Ignore:
Timestamp:
11/24/10 10:34:17 (2 years ago)
Author:
salcock
Message:
  • IPv6 fragment extension headers use a rather different header format than other extensions.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/libtrace.h.in

    r1661 r1665  
    501501} PACKED libtrace_ip6_ext_t; 
    502502 
     503typedef struct libtrace_ip6_frag  
     504{ 
     505        uint8_t nxt;    /**< Next header */ 
     506        uint8_t res;    /**< Reserved */ 
     507        uint16_t frag_off;      /**< Fragment Offset (includes M flag) */ 
     508        uint32_t ident; /** Fragment identification */ 
     509} PACKED libtrace_ip6_frag_t; 
     510 
    503511/** Generic IPv6 header structure 
    504512 * 
Note: See TracChangeset for help on using the changeset viewer.