aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-01-14 22:54:20 +0000
committerGuy Harris <guy@alum.mit.edu>2003-01-14 22:54:20 +0000
commite3fe8c0d34490c77ea9d47813198ca15d55a5cd2 (patch)
tree266daab47c5223da18af21caac6c300dcd991f07
parent75dbe3e0b167b653ac85a93552b7390d15790534 (diff)
From Anders Broman: some additional SCTP payload protocol IDs.
svn path=/trunk/; revision=6925
-rw-r--r--AUTHORS4
-rw-r--r--doc/ethereal.pod.template1
-rw-r--r--packet-sctp.c16
3 files changed, 20 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index 7e7abb0cef..95772c93f7 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1564,6 +1564,10 @@ rmkml <rmkml [AT] wanadoo.fr> {
Support for capturing from a pipe in Tethereal
}
+Anders Broman <a.broman [AT] telia.com> {
+ Additional SCTP payload protocol identifiers
+}
+
Alain Magloire <alainm[AT]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 7e6be65112..dd558e697c 100644
--- a/doc/ethereal.pod.template
+++ b/doc/ethereal.pod.template
@@ -1683,6 +1683,7 @@ B<http://www.ethereal.com>.
Marco Molteni <mmolteni [AT] cisco.com>
James Harris <jharris [AT] fourhorsemen.org>
rmkml <rmkml [AT] wanadoo.fr>
+ Anders Broman <a.broman [AT] telia.com>
Alain Magloire <alainm[AT]rcsm.ece.mcgill.ca> was kind enough to give his
permission to use his version of snprintf.c.
diff --git a/packet-sctp.c b/packet-sctp.c
index 97a87909e2..9673b052c9 100644
--- a/packet-sctp.c
+++ b/packet-sctp.c
@@ -11,7 +11,7 @@
* - support for reassembly
* - code cleanup
*
- * $Id: packet-sctp.c,v 1.46 2003/01/13 14:04:31 tuexen Exp $
+ * $Id: packet-sctp.c,v 1.47 2003/01/14 22:54:18 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -309,6 +309,13 @@ static const value_string sctp_cause_code_values[] = {
#define SUA_PAYLOAD_PROTOCOL_ID 4
#define M2PA_PAYLOAD_PROTOCOL_ID 5
#define V5UA_PAYLOAD_PROTOCOL_ID 6
+#define H248_PAYLOAD_PROTOCOL_ID 7
+#define BICC_PAYLOAD_PROTOCOL_ID 8
+#define TALI_PAYLOAD_PROTOCOL_ID 9
+#define DUA_PAYLOAD_PROTOCOL_ID 10
+#define ASAP_PAYLOAD_PROTOCOL_ID 11
+#define ENRP_PAYLOAD_PROTOCOL_ID 12
+#define H323_PAYLOAD_PROTOCOL_ID 13
static const value_string sctp_payload_proto_id_values[] = {
{ NOT_SPECIFIED_PROTOCOL_ID, "not specified" },
@@ -318,6 +325,13 @@ static const value_string sctp_payload_proto_id_values[] = {
{ SUA_PAYLOAD_PROTOCOL_ID, "SUA" },
{ M2PA_PAYLOAD_PROTOCOL_ID, "M2PA" },
{ V5UA_PAYLOAD_PROTOCOL_ID, "V5UA" },
+ { H248_PAYLOAD_PROTOCOL_ID, "H.248/MEGACO" },
+ { BICC_PAYLOAD_PROTOCOL_ID, "BICC/Q.2150.3" },
+ { TALI_PAYLOAD_PROTOCOL_ID, "TALI" },
+ { DUA_PAYLOAD_PROTOCOL_ID, "DUA" },
+ { ASAP_PAYLOAD_PROTOCOL_ID, "ASAP" },
+ { ENRP_PAYLOAD_PROTOCOL_ID, "ENRP" },
+ { H323_PAYLOAD_PROTOCOL_ID, "H.323" },
{ 0, NULL } };
/* The structure of the common header is described by the following constants */