aboutsummaryrefslogtreecommitdiffstats
path: root/rtp_pt.h
AgeCommit message (Collapse)AuthorFilesLines
2005-02-01From Alejandro Vaquero:Lars Roland1-0/+1
h323 taps support up to 5 messages per packet now. VoIP call analysis: - Collect ISUP, SIP and H323 calls from a capture and show them in window with the following info: - Start and Stop time of the call - Init svn path=/trunk/; revision=13225
2004-07-18Set the svn:eol-style property on all text files to "native", so thatGuy Harris1-1/+1
they have LF at the end of the line on UN*X and CR/LF on Windows; hopefully this means that if a CR/LF version is checked in on Windows, the CRs will be stripped so that they show up only when checked out on Windows, not on UN*X. svn path=/trunk/; revision=11400
2004-06-01Don't define data variables in header files included by more than oneGuy Harris1-31/+2
file - that keeps the variable from being shared, and also produces compiler warnings if the variable isn't used by all the files that include the header in question. svn path=/trunk/; revision=11067
2004-06-01From Thomas Anders dissects the RTP Payload Type (if media protocol is RTP/AVP)Anders Broman1-1/+34
with its descriptive name rather than the raw value string, much like packet-rtp.c does already. To avoid duplicate definitions, the existing rtp_payload_type_vals[] definition is moved from packet-rtp.c and gtk/rtp_stream_dlg.c to rtp_pt.h. svn path=/trunk/; revision=11060
2003-09-25Add PT_CN_OLD, so the RTP analysis code can get the RTP payload types itGuy Harris1-1/+2
needs from this header. svn path=/trunk/; revision=8542
2003-08-23Add a dissector table for RTP payload types, and have dissectorsGuy Harris1-0/+62
register themselves in that table rather than exporting their dissectors by name and having the RTP dissector know about particular dissectors for particular payload types. svn path=/trunk/; revision=8215