Hi, im trying to use the gsm_rlcmac dissector, but if i run wireshark, select a packet and the "decode as..." option, i cant find it in the list. If i type gsm_rlcmac on the filter place, it turns green, so the dissector is up and running. I also tried to make my own dissector, that calls the gsm_rlcmac, but it wont work, the
returns NULL. What am i doing wrong? Thanks in advance asked 29 Aug '14, 08:55 ingcpt |
One Answer:
The answered 29 Aug '14, 09:34 grahamb ♦ |
I.e., there are separate dissectors for the uplink and downlink, so either you have to choose one of the dissectors or, if this is some protocol that encapsulates GSM RLC MAC messages, that protocol needs to have some extra field indicating whether the traffic is uplink or downlink traffic, in which case that protocol needs a new dissector that looks at that field and calls the uplink or downlink dissector.