From Shmulik Bezale:

gsm sms -> reassemble + wap support
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3004

svn path=/trunk/; revision=26607
This commit is contained in:
Anders Broman 2008-10-28 19:48:55 +00:00
parent d397a165c2
commit c29d949834
3 changed files with 994 additions and 56 deletions

File diff suppressed because it is too large Load Diff

View File

@ -7401,6 +7401,11 @@ proto_reg_handoff_wsp(void)
dissector_add("gsm-sms-ud.udh.port", UDP_PORT_WSP, wsp_fromudp_handle);
dissector_add("gsm-sms-ud.udh.port", UDP_PORT_WSP_PUSH, wsp_fromudp_handle);
/* GSM SMS dissector can also carry WSP */
dissector_add("gsm-sms.udh.port", UDP_PORT_WSP, wsp_fromudp_handle);
dissector_add("gsm-sms.udh.port", UDP_PORT_WSP_PUSH, wsp_fromudp_handle);
/* This dissector is also called from the WTP and WTLS dissectors */
}

View File

@ -1098,4 +1098,5 @@ proto_reg_handoff_wtp(void)
wtp_fromudp_handle = find_dissector("wtp-udp");
dissector_add("udp.port", UDP_PORT_WTP_WSP, wtp_fromudp_handle);
dissector_add("gsm-sms-ud.udh.port", UDP_PORT_WTP_WSP, wtp_fromudp_handle);
dissector_add("gsm-sms.udh.port", UDP_PORT_WTP_WSP, wtp_fromudp_handle);
}