Changeset 47f5a77 in mainline for uspace/srv/net/inetsrv/inet_std.h


Ignore:
Timestamp:
2013-07-17T08:46:06Z (12 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
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.
Message:

merge mainline changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/inetsrv/inet_std.h

    rcdc3afa r47f5a77  
    4848        /** Total Length */
    4949        uint16_t tot_len;
    50         /** Identification */
     50        /** Identifier */
    5151        uint16_t id;
    5252        /** Flags, Fragment Offset */
     
    9090};
    9191
     92/** Bits in ip6_frag_header_t.offsmf */
     93enum 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
    92102/** IPv6 Datagram header (fixed part) */
    93103typedef struct {
     
    114124        /** Reserved */
    115125        uint8_t reserved;
    116         /** Fragment Offset, Flags */
    117         uint16_t foff_flags;
    118         /** Identification */
     126        /** Fragmentation offset, reserved and M flag */
     127        uint16_t offsmf;
     128        /** Identifier */
    119129        uint32_t id;
    120130} ip6_header_fragment_t;
Note: See TracChangeset for help on using the changeset viewer.