From Neil Piercy:

Add 3GPP Home Node B Iuh protocol support (HNBAP & RUA)
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4531
 - Added IE extension for HNBAP
 - Removed unused .h files

svn path=/trunk/; revision=31989
This commit is contained in:
Anders Broman 2010-02-24 20:16:33 +00:00
parent 8ead825575
commit da5346bf77
5 changed files with 4163 additions and 0 deletions

View File

@ -54,6 +54,7 @@ SUBDIRS = \
h450-ros \
h460 \
h501 \
hnbap \
inap \
ldap \
logotypecertextn \
@ -84,6 +85,7 @@ SUBDIRS = \
rrc \
rrlp \
rtse \
rua \
s1ap \
s4406 \
sabp \

View File

@ -93,6 +93,7 @@ per: \
h450-ros\
h460 \
h501 \
hnbap \
lte-rrc \
nbap \
mpeg-audio \
@ -102,6 +103,7 @@ per: \
rnsap \
rrc \
rrlp \
rua \
s1ap \
sabp \
t38 \
@ -199,6 +201,9 @@ clean:
cd h501
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ..
cd hnbap
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ..
cd inap
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ..
@ -289,6 +294,9 @@ clean:
cd rrlp
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ..
cd rua
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ..
cd s1ap
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ..
@ -502,6 +510,11 @@ h501::
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake copy_files
cd ..
hnbap::
cd hnbap
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake copy_files
cd ..
inap::
cd inap
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake copy_files
@ -652,6 +665,11 @@ rtse::
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake copy_files
cd ..
rua::
cd rua
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake copy_files
cd ..
s1ap::
cd s1ap
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake copy_files

View File

@ -120,6 +120,7 @@ ASN1_DISSECTOR_SRC = \
packet-h450-ros.c \
packet-h460.c \
packet-h501.c \
packet-hnbap.c \
packet-logotypecertextn.c \
packet-mms.c \
packet-mpeg-audio.c \
@ -141,6 +142,7 @@ ASN1_DISSECTOR_SRC = \
packet-ranap.c \
packet-ros.c \
packet-rtse.c \
packet-rua.c \
packet-s1ap.c \
packet-s4406.c \
packet-sabp.c \

File diff suppressed because it is too large Load Diff

1720
epan/dissectors/packet-rua.c Normal file

File diff suppressed because it is too large Load Diff