From Venkateshwaran Dorai: Server/Application State Protocol v1 (RFC 4678 ) Dissector

See: http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4584
From me: 
   - Change dissect_sasp_pdu() to return void: tcp_dissect_pdus() ignores
     any return value when it calls a dissector and thus trying to register/use 
      the dissector as a 'new-style' dissector doesn't work as intended;.
   - Add some 'expert' messages for invalid SASP Header Type and unknown Message Type.
 - Use consistent indentation & cleanup whitespace;
 - (A few other minor changes).

svn path=/trunk/; revision=32266
This commit is contained in:
Bill Meier 2010-03-22 18:09:09 +00:00
parent eaba9a1147
commit 0929a5625d
4 changed files with 1622 additions and 0 deletions

View File

@ -2989,6 +2989,10 @@ Tobias Erichsen <t.erichsen [AT] gmx.de> {
Erwin van Eijk <erwin.vaneijk [AT] gmail.com> {
ETSI ts 101 671 dissector
}
Venkateshwaran Dorai <venkateshwaran.d [AT] gmail.com> {
Server/Application State Protocol [SASP] (RFC 4678 )
}
and by:

View File

@ -891,6 +891,7 @@ set(DISSECTOR_SRC
dissectors/packet-s5066.c
dissectors/packet-sadmind.c
dissectors/packet-sap.c
dissectors/packet-sasp.c
dissectors/packet-sbus.c
dissectors/packet-sccp.c
dissectors/packet-sccpmg.c

View File

@ -797,6 +797,7 @@ DISSECTOR_SRC = \
packet-s5066.c \
packet-sadmind.c \
packet-sap.c \
packet-sasp.c \
packet-sbus.c \
packet-sccp.c \
packet-sccpmg.c \

File diff suppressed because it is too large Load Diff