summaryrefslogtreecommitdiff
path: root/packet-m2pa.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-01-14 23:53:40 +0000
committerGuy Harris <guy@alum.mit.edu>2003-01-14 23:53:40 +0000
commita002a0fec41fdab23a6f247ea2b209bad0abefc8 (patch)
treed8a94839fe39ed71025a4d0c4f47543eff31f44c /packet-m2pa.c
parente3fe8c0d34490c77ea9d47813198ca15d55a5cd2 (diff)
downloadwireshark-a002a0fec41fdab23a6f247ea2b209bad0abefc8.tar.gz
From Christian Falckenberg: beginnings of a MEGACO dissector.
Move SCTP payload protocol IDs to a header file, and get the PPIDs from that header file rather than defining them in dissectors running atop SCTP. Use both the old(?) and official PPID for ASAP. svn path=/trunk/; revision=6926
Diffstat (limited to 'packet-m2pa.c')
-rw-r--r--packet-m2pa.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-m2pa.c b/packet-m2pa.c
index 5f77a0b371..b8468598b4 100644
--- a/packet-m2pa.c
+++ b/packet-m2pa.c
@@ -7,7 +7,7 @@
* Copyright 2001, 2002, Jeff Morriss <jeff.morriss[AT]ulticom.com>,
* updated by Michael Tuexen <michael.tuexen[AT]siemens.com>
*
- * $Id: packet-m2pa.c,v 1.15 2002/11/09 19:00:09 tuexen Exp $
+ * $Id: packet-m2pa.c,v 1.16 2003/01/14 23:53:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -37,10 +37,10 @@
#include <epan/packet.h>
#include "prefs.h"
+#include "sctpppids.h"
#define NETWORK_BYTE_ORDER FALSE
#define SCTP_PORT_M2PA 3565
-#define M2PA_PAYLOAD_PROTOCOL_ID 5
static int global_sctp_port = SCTP_PORT_M2PA;
static int sctp_port = 0;
@@ -463,4 +463,4 @@ proto_reg_handoff_m2pa(void)
sctp_port = global_sctp_port;
dissector_add("sctp.port", sctp_port, m2pa_handle);
-} \ No newline at end of file
+}