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

decode rtcp

0

hi guys,i am trying to decode rtcp app data using my own dissector can anyone suggest how to proceed?

asked 18 Feb '17, 01:31

lucky15's gravatar image

lucky15
6558
accept rate: 0%


One Answer:

0

There's this dissector table called rtcp.app.name which you can register to with your application name. Then your registered handler will be called with a TVB containing the APP option data. Look at the packet-rtcp.c dissector code for details.

answered 18 Feb '17, 06:14

Jaap's gravatar image

Jaap ♦
11.7k16101
accept rate: 14%

thank you for answering..but i have the same app name for all the subtypes.,can i decode based on subtype also?

(18 Feb '17, 10:33) lucky15

In fact you're getting the whole APP packet, not just the application data contained within. So the subtype is in there as well.

(19 Feb '17, 02:11) Jaap ♦