From Felix Fei: GSM MAP support.

From Michael Lum:

	Modified for better TCAP separation, fixed EOC handling (a la
	TCAP).

	Added parameter parsing (although not dissection or naming).

svn path=/trunk/; revision=9160
This commit is contained in:
Guy Harris 2003-12-03 23:54:50 +00:00
parent 56c65fa63b
commit 78191a09b5
5 changed files with 1596 additions and 2 deletions

View File

@ -1815,6 +1815,7 @@ Michael Lum <mlum [AT] telostech.com> {
GSM SMS (3GPP TS 24.011) support
GSM SS (3GPP TS 24.080) support
GSM SMS TPDU (3GPP TS 23.040) support
GSM MAP fixes and parameter separation
Taps for ANSI A-interface statistics
}
@ -1941,6 +1942,10 @@ Martijn Schipper <mschipper [AT] globespanvirata.com> {
(AiroPeek 2.x)
}
Felix Fei <felix.fei [AT] utstar.com> {
GSM MAP support
}
And assorted fixes and enhancements by the people listed above and by:
Pavel Roskin <proski [AT] gnu.org>

View File

@ -1,7 +1,7 @@
# Makefile.am
# Automake file for Ethereal
#
# $Id: Makefile.am,v 1.661 2003/12/01 23:05:08 guy Exp $
# $Id: Makefile.am,v 1.662 2003/12/03 23:54:49 guy Exp $
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@ethereal.com>
@ -238,6 +238,7 @@ DISSECTOR_SRC = \
packet-gprs-ns.c \
packet-gre.c \
packet-gsm_a.c \
packet-gsm_map.c \
packet-gsm_sms.c \
packet-gssapi.c \
packet-gtp.c \

View File

@ -1,7 +1,7 @@
## Makefile for building ethereal.exe with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
# $Id: Makefile.nmake,v 1.368 2003/12/01 23:05:08 guy Exp $
# $Id: Makefile.nmake,v 1.369 2003/12/03 23:54:49 guy Exp $
include config.nmake
include <win32.mak>
@ -178,6 +178,7 @@ DISSECTOR_SRC = \
packet-gprs-ns.c \
packet-gre.c \
packet-gsm_a.c \
packet-gsm_map.c \
packet-gsm_sms.c \
packet-gssapi.c \
packet-gtp.c \

View File

@ -2003,6 +2003,7 @@ B<http://www.ethereal.com>.
Pasi Kovanen <Pasi.Kovanen [AT] tahoenetworks.fi>
Teemu Rinta-aho <teemu.rinta-aho [AT] nomadiclab.com>
Martijn Schipper <martijn.schipper [AT] intersil.com>
Felix Fei <felix.fei [AT] utstar.com>
Wayne Parrott <wayne_p [AT] pacific.net.au>
Laurent Meyer <laurent.meyer6 [AT] wanadoo.fr>
Lars Roland <Lars.Roland [AT] gmx.net>

1586
packet-gsm_map.c Normal file

File diff suppressed because it is too large Load Diff