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


Ignore:
Timestamp:
2013-07-16T16:28:09Z (12 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fc4bf2a
Parents:
f4a27304
Message:

cherrypick trivial changes from lp:~as-s/helenos/ipv6

File:
1 edited

Legend:

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

    rf4a27304 rc0f3460  
    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;
     126        /** Fragmentation offset, reserved and M flag */
     127        uint16_t offsmf;
    118128        /** Identification */
    119129        uint32_t id;
Note: See TracChangeset for help on using the changeset viewer.