Rev 4731 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4731 | Rev 4743 | ||
---|---|---|---|
Line 50... | Line 50... | ||
50 | /** Type definition of the packet pointer. |
50 | /** Type definition of the packet pointer. |
51 | * @see packet |
51 | * @see packet |
52 | */ |
52 | */ |
53 | typedef packet_t * packet_ref; |
53 | typedef packet_t * packet_ref; |
54 | 54 | ||
55 | /** Type of the received packet. |
- | |
56 | */ |
- | |
57 | enum packet_type{ |
- | |
58 | /** The packet is from the local subsystem. |
- | |
59 | */ |
- | |
60 | PACKET_SELF, |
- | |
61 | /** The packet is for all hosts. |
- | |
62 | */ |
- | |
63 | PACKET_BROADCAST, |
- | |
64 | /** The packet target complies with the local subsystem filter. |
- | |
65 | */ |
- | |
66 | PACKET_MULTICAST, |
- | |
67 | /** The packet is for the local subsystem from other host. |
- | |
68 | */ |
- | |
69 | PACKET_OTHERHOST |
- | |
70 | }; |
- | |
71 | - | ||
72 | /** @name Packet management system interface |
55 | /** @name Packet management system interface |
73 | */ |
56 | */ |
74 | /*@{*/ |
57 | /*@{*/ |
75 | 58 | ||
76 | /** Finds the packet mapping. |
59 | /** Finds the packet mapping. |