Changeset 47f5a77 in mainline for uspace/srv/net/inetsrv/inet_std.h
- Timestamp:
- 2013-07-17T08:46:06Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3a0a4d8
- Parents:
- cdc3afa (diff), 1d94e21 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/inetsrv/inet_std.h
rcdc3afa r47f5a77 48 48 /** Total Length */ 49 49 uint16_t tot_len; 50 /** Identifi cation*/50 /** Identifier */ 51 51 uint16_t id; 52 52 /** Flags, Fragment Offset */ … … 90 90 }; 91 91 92 /** Bits in ip6_frag_header_t.offsmf */ 93 enum flags_offsmt_bits { 94 /** More fragments */ 95 OF_FLAG_M = 0, 96 /** Fragment offset, highest bit */ 97 OF_FRAGOFF_h = 15, 98 /** Fragment offset, lowest bit */ 99 OF_FRAGOFF_l = 3 100 }; 101 92 102 /** IPv6 Datagram header (fixed part) */ 93 103 typedef struct { … … 114 124 /** Reserved */ 115 125 uint8_t reserved; 116 /** Fragment Offset, Flags*/117 uint16_t foff_flags;118 /** Identifi cation*/126 /** Fragmentation offset, reserved and M flag */ 127 uint16_t offsmf; 128 /** Identifier */ 119 129 uint32_t id; 120 130 } ip6_header_fragment_t;
Note:
See TracChangeset
for help on using the changeset viewer.