aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtp-events.h
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2008-11-26 23:43:09 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2008-11-26 23:43:09 +0000
commit1e5a87248936031d80cdc178ccc668b9dd5a4dab (patch)
treee3696fced794a2c2095de852b82d60fb0534cec8 /epan/dissectors/packet-rtp-events.h
parent14029e4803a4ce61cd5c89ef6991f9a45c91689b (diff)
From Chidambaram Arunachalam:
This patch adds the ability to identify Cisco NSE packets. http://www.iana.org/assignments/media-types/audio/vnd.cisco.nse In addition to the NSE(s) described in the above document, the patch also decodes two additional NSE(s): Modem relay capability (199) and Modem Relay indication (203). svn path=/trunk/; revision=26859
Diffstat (limited to 'epan/dissectors/packet-rtp-events.h')
-rw-r--r--epan/dissectors/packet-rtp-events.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/epan/dissectors/packet-rtp-events.h b/epan/dissectors/packet-rtp-events.h
index 4de373d5ba..9175ddb330 100644
--- a/epan/dissectors/packet-rtp-events.h
+++ b/epan/dissectors/packet-rtp-events.h
@@ -139,6 +139,16 @@
#define RTP_MWATTTONE 172
#define RTP_NEWMWATTTN 173
+#define RTP_CISCO_NSE_FAX_PASSTHROUGH_IND 192
+#define RTP_CISCO_NSE_MODEM_PASSTHROUGH_IND 193
+#define RTP_CISCO_NSE_VOICE_MODE_IND 194
+#define RTP_CISCO_NSE_MODEM_RELAY_CAP_IND 199
+#define RTP_CISCO_NSE_FAX_RELAY_IND 200
+#define RTP_CISCO_NSE_ACK 201
+#define RTP_CISCO_NSE_NACK 202
+#define RTP_CISCO_NSE_MODEM_RELAY_IND 203
+
+
static const value_string rtp_event_type_values[] =
{
@@ -249,6 +259,14 @@ static const value_string rtp_event_type_values[] =
{ RTP_LOOPBACK, "Loopback"},
{ RTP_MWATTTONE, "Old milliwatt tone (1000 Hz)"},
{ RTP_NEWMWATTTN, "New milliwatt tone (1004 Hz)"},
+ { RTP_CISCO_NSE_FAX_PASSTHROUGH_IND, "Cisco NSE: Shift to voiceband data mode"},
+ { RTP_CISCO_NSE_MODEM_PASSTHROUGH_IND, "Cisco NSE: Disable echo cancellation"},
+ { RTP_CISCO_NSE_VOICE_MODE_IND, "Cisco NSE: Shift to voice mode"},
+ { RTP_CISCO_NSE_MODEM_RELAY_CAP_IND, "Cisco NSE: Advertise Modem relay capability"},
+ { RTP_CISCO_NSE_FAX_RELAY_IND, "Cisco NSE: Shift to fax relay mode"},
+ { RTP_CISCO_NSE_ACK, "Positive acknowledgement of Cisco NSE"},
+ { RTP_CISCO_NSE_NACK, "Negative acknowledgement of Cisco NSE"},
+ { RTP_CISCO_NSE_MODEM_RELAY_IND , "Cisco NSE: Shift to modem relay mode"},
{ 0, NULL },
};