aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-nb_rtpmux.c
AgeCommit message (Collapse)AuthorFilesLines
2010-11-18Tweak the display of the header.etxrab1-4/+12
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34946 f5534014-38df-0310-8fa8-9805f1628bb7
2010-03-20Update offset outside of if statement.etxrab1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32250 f5534014-38df-0310-8fa8-9805f1628bb7
2010-03-17Add dissection of "multiplexing with RTP header compression"etxrab1-31/+74
inspired by Sourabh Rathors bug https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4591 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32229 f5534014-38df-0310-8fa8-9805f1628bb7
2009-10-07Cleanup header fields.jake1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30394 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-29Use NB_RTPMUX as protocol short namekrj1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29610 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-29We need to handoff even when we don't have a treekrj1-51/+48
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29609 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-29Indent commentskrj1-30/+27
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29608 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-29Note what the 3GPP spec is for this protocol.guy1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29607 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-29Cleanup:wmeier1-23/+10
- proto_reg_handoff: 'if (!inited)' not req'd; - Remove unneeded #includes; - Use NULL instead of " for 'blurbs'; - Remove unneeded foward reference. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29604 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-29Note that the "heuristic" is fatally weak, and must be strengthened orguy1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29603 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-28From Neil Piercy:etxrab1-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 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29602 f5534014-38df-0310-8fa8-9805f1628bb7