diff options
author | Gerald Combs <gerald@wireshark.org> | 1998-09-16 02:39:15 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 1998-09-16 02:39:15 +0000 |
commit | 86534f46e150856fcce76af5c7598d354fb32ca9 (patch) | |
tree | 681b71cababcf54c865c4dfa3c52a98b1d793231 /packet-ipv6.h | |
download | wireshark-86534f46e150856fcce76af5c7598d354fb32ca9.tar.gz wireshark-86534f46e150856fcce76af5c7598d354fb32ca9.tar.bz2 wireshark-86534f46e150856fcce76af5c7598d354fb32ca9.zip |
svn path=/trunk/; revision=2
Diffstat (limited to 'packet-ipv6.h')
-rw-r--r-- | packet-ipv6.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/packet-ipv6.h b/packet-ipv6.h new file mode 100644 index 0000000000..75ac3d9dd0 --- /dev/null +++ b/packet-ipv6.h @@ -0,0 +1,8 @@ +typedef struct _e_ipv6_header{ + /* the version contains 4-bit version and 4-bit priority */ + guint8 version; + guint8 flow_label[3]; + guint16 payload_length; + guint8 next_header; + guint8 hop_limit; +} e_ipv6_header; |