From Niels Koot: support TCAP over SUA.
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 29 Dec 2003 00:41:07 +0000 (00:41 +0000)
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 29 Dec 2003 00:41:07 +0000 (00:41 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9469 f5534014-38df-0310-8fa8-9805f1628bb7

packet-tcap.c

index 47f14b032c63f0f426787fcaf3be9b97e5a6e60e..70a78a1430856897fb899ee0343a53d35b1cb81e 100644 (file)
@@ -9,7 +9,7 @@
  *
  * (append your name here for newer version)
  *
- * $Id: packet-tcap.c,v 1.4 2003/12/02 02:58:32 guy Exp $
+ * $Id: packet-tcap.c,v 1.5 2003/12/29 00:41:07 guy Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -2784,5 +2784,14 @@ proto_reg_handoff_tcap(void)
     dissector_add("sccp.ssn", 11, tcap_handle); /* SMS/MC */
     dissector_add("sccp.ssn", 12, tcap_handle); /* IS41 OTAF */
 
+    dissector_add("sua.ssn", 5, tcap_handle); /* MAP*/
+    dissector_add("sua.ssn", 6, tcap_handle); /* HLR*/
+    dissector_add("sua.ssn", 7, tcap_handle); /* VLR */
+    dissector_add("sua.ssn", 8, tcap_handle); /* MSC */
+    dissector_add("sua.ssn", 9, tcap_handle); /* EIR */
+    dissector_add("sua.ssn", 10, tcap_handle); /* EIR */
+    dissector_add("sua.ssn", 11, tcap_handle); /* SMS/MC */
+    dissector_add("sua.ssn", 12, tcap_handle); /* IS41 OTAF */
+
     data_handle = find_dissector("data");
 }