aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gsm_a_rp.c
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2010-03-01 22:11:20 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2010-03-01 22:11:20 +0000
commitea5dbab5f29e94f0ac32b399c3e5b3dbdb824ff1 (patch)
treebfdef3a4f3548d52710bddc378828b8e1b5ddd1b /epan/dissectors/packet-gsm_a_rp.c
parent118b183763c1b73705ddd2487c74a762daee5135 (diff)
From LEGO via bug 4405:
Add the dot ('.') to the characters that can compose a name. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32068 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-gsm_a_rp.c')
-rw-r--r--epan/dissectors/packet-gsm_a_rp.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/epan/dissectors/packet-gsm_a_rp.c b/epan/dissectors/packet-gsm_a_rp.c
index 73ec7be265..95a26429d4 100644
--- a/epan/dissectors/packet-gsm_a_rp.c
+++ b/epan/dissectors/packet-gsm_a_rp.c
@@ -593,4 +593,10 @@ proto_register_gsm_a_rp(void)
void
proto_reg_handoff_gsm_a_rp(void)
{
+ dissector_handle_t gsm_a_rp_handle;
+
+ gsm_a_rp_handle = create_dissector_handle(dissect_rp, proto_a_rp);
+ /* Dissect messages embedded in SIP */
+ dissector_add_string("media_type","application/vnd.3gpp.sms", gsm_a_rp_handle);
+
}