diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-05-26 21:54:59 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-05-26 21:54:59 +0000 |
commit | 8efa4b855148d736698cbba2b14b86ed02adfc65 (patch) | |
tree | 6b122be088bf8249cc7eb9982b7a7cf6325ba788 /packet-ip.h | |
parent | d6a6de8cb36be268c487b78872c7a5f903682c85 (diff) | |
download | wireshark-8efa4b855148d736698cbba2b14b86ed02adfc65.tar.gz wireshark-8efa4b855148d736698cbba2b14b86ed02adfc65.tar.bz2 wireshark-8efa4b855148d736698cbba2b14b86ed02adfc65.zip |
Initial SCTP support (showing it by name from "ipprotostr()") from
Michael Tuexen.
svn path=/trunk/; revision=2011
Diffstat (limited to 'packet-ip.h')
-rw-r--r-- | packet-ip.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packet-ip.h b/packet-ip.h index 8749196069..ac4485f4b9 100644 --- a/packet-ip.h +++ b/packet-ip.h @@ -1,7 +1,7 @@ /* packet-ip.h * Definitions for IP packet disassembly structures and routines * - * $Id: packet-ip.h,v 1.13 2000/04/25 08:55:04 gram Exp $ + * $Id: packet-ip.h,v 1.14 2000/05/26 21:54:50 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -61,6 +61,7 @@ void dissect_ip(const u_char *, int, frame_data *, proto_tree *); #define IP_PROTO_PIM 103 /* Protocol Independent Mcast */ #define IP_PROTO_IPCOMP 108 /* IP payload compression */ #define IP_PROTO_VRRP 112 /* Virtual Router Redundancy Protocol */ +#define IP_PROTO_SCTP 132 /* Stream Control Transmission Protocol */ typedef enum { NO_LENGTH, /* option has no data, hence no length */ |