summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS4
-rw-r--r--doc/ethereal.pod.template1
-rw-r--r--ipproto.c3
-rw-r--r--packet-ip.h3
4 files changed, 9 insertions, 2 deletions
diff --git a/AUTHORS b/AUTHORS
index 3afac93a71..bf18ed4722 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -317,6 +317,10 @@ Mark Burton <markb@ordern.com> {
Assorted SMB fixes and enhancements
}
+Michael Tuexen <Michael.Tuexen@icn.siemens.de> {
+ SCTP support in "ipprotostr()"
+}
+
Alain Magloire <alainm@rcsm.ece.mcgill.ca> was kind enough to
give his permission to use his version of snprintf.c.
diff --git a/doc/ethereal.pod.template b/doc/ethereal.pod.template
index 1256db54e5..f7ee40ae72 100644
--- a/doc/ethereal.pod.template
+++ b/doc/ethereal.pod.template
@@ -866,6 +866,7 @@ B<http://ethereal.zing.org>.
Yaniv Kaul <ykaul@checkpoint.com>
Paul Ionescu <ipaul@romsys.ro>
Mark Burton <markb@ordern.com>
+ Michael Tuexen <Michael.Tuexen@icn.siemens.de>
Alain Magloire <alainm@rcsm.ece.mcgill.ca> was kind enough to give his
permission to use his version of snprintf.c.
diff --git a/ipproto.c b/ipproto.c
index 38a3d4cc50..aa3faa054e 100644
--- a/ipproto.c
+++ b/ipproto.c
@@ -1,7 +1,7 @@
/* ipproto.c
* Routines for converting IPv4 protocol/v6 nxthdr field into string
*
- * $Id: ipproto.c,v 1.7 2000/03/21 05:15:11 guy Exp $
+ * $Id: ipproto.c,v 1.8 2000/05/26 21:54:50 guy Exp $
*
* Gilbert Ramirez <gram@xiexie.org>
*
@@ -96,6 +96,7 @@ static const value_string ipproto_val[] = {
{ IP_PROTO_IPCOMP, "IPComp" },
{ IP_PROTO_VRRP, "VRRP" },
{ IP_PROTO_VINES, "VINES" },
+ { IP_PROTO_SCTP, "SCTP" },
{ 0, NULL },
};
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 */