aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-nb_rtpmux.c
AgeCommit message (Collapse)AuthorFilesLines
2010-11-18Tweak the display of the header.Anders Broman1-4/+12
svn path=/trunk/; revision=34946
2010-03-20Update offset outside of if statement.Anders Broman1-2/+2
svn path=/trunk/; revision=32250
2010-03-17Add dissection of "multiplexing with RTP header compression"Anders Broman1-31/+74
inspired by Sourabh Rathors bug https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4591 svn path=/trunk/; revision=32229
2009-10-07Cleanup header fields.Jaap Keuter1-1/+1
svn path=/trunk/; revision=30394
2009-08-29Use NB_RTPMUX as protocol short nameKovarththanan Rajaratnam1-2/+2
svn path=/trunk/; revision=29610
2009-08-29We need to handoff even when we don't have a treeKovarththanan Rajaratnam1-51/+48
svn path=/trunk/; revision=29609
2009-08-29Indent commentsKovarththanan Rajaratnam1-30/+27
svn path=/trunk/; revision=29608
2009-08-29Note what the 3GPP spec is for this protocol.Guy Harris1-23/+23
Suggest a possible less-weak heuristic. Note that we're not checking the T bit and handling RTP header compression. At least as I read TS 29.414, the length indicator isn't supposed to be zero; however, a length indicator of 0 doesn't keep us from dissecting further, so just don't bother dissecting the payload. We should, perhaps, add an expert info for this. We should perhaps also catch exceptions thrown when dissecting the RTP packet, so a malformed RTP packet will still let us continue dissecting the rest of the Nb packet. svn path=/trunk/; revision=29607
2009-08-29Cleanup:Bill Meier1-23/+10
- proto_reg_handoff: 'if (!inited)' not req'd; - Remove unneeded #includes; - Use NULL instead of " for 'blurbs'; - Remove unneeded foward reference. svn path=/trunk/; revision=29604
2009-08-29Note that the "heuristic" is fatally weak, and must be strengthened orGuy Harris1-67/+86
eliminated. Fix indentation. Use tvb_reported_length(), so we throw an exception for packets cut short by a snapshot length. Don't bother showing or dissecting the payload if there isn't any. Don't show an item with a zero-length payload as going to the end of the packet. svn path=/trunk/; revision=29603
2009-08-28From Neil Piercy:Anders Broman1-0/+218
Add new protocol for 3GPP 29.414 (Nb interface RTP Mux). - Don't use C++-style comments (comments beginning with "//") - Don't declare variables in the middle of executable code; not all C compilers support that. - Dont register preferences when none present. - Removed CHECK_COL svn path=/trunk/; revision=29602