This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

what is the decoding mechanism for User Data in case of IS-637-A message protocol

0

Hi,

My UE is sending message in form of IS-637-A protocol. Its a SIP request:Message. Wireshark is able to decode the user data. I want to know the decoding machanism so that I will be able to decode that mesasge without help of wireshark. I am devloping an application which will decode the message and come out with user data.

Need your help. Thanks in advance in any suggestion

asked 25 Sep '12, 22:57

raman's gravatar image

raman
1111
accept rate: 0%

edited 26 Sep '12, 05:21

grahamb's gravatar image

grahamb ♦
19.8k330206


One Answer:

0

Have a look in packet-ansi_637.c it registers for application/vnd.3gpp2.sms which I assume this is and the content from the SIP message gets translated in dissect_ansi_637_trans_app() which calls dissect_ansi_637_trans().

answered 26 Sep '12, 05:04

Anders's gravatar image

Anders ♦
4.6k952
accept rate: 17%

A link to the file (from the development version of Wireshark) is here. Note that the code is GPL licensed so your own application must use a compatible license.

(26 Sep '12, 05:24) grahamb ♦