aboutsummaryrefslogtreecommitdiffstats
path: root/rtp_pt.h
Commit message (Collapse)AuthorAgeFilesLines
* Move a pile of protocol-related headers from the top-level sourceGuy Harris2005-09-171-68/+0
| | | | | | | | | | directory to the epan directory. Some of them should perhaps ultimately be moved to epan/dissectors, if they pertain only to stuff exported by a particular dissector. Fix Gerald's e-mail address in files we're moving. svn path=/trunk/; revision=15844
* From Alejandro Vaquero:Lars Roland2005-02-011-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
* Set the svn:eol-style property on all text files to "native", so thatGuy Harris2004-07-181-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
* Don't define data variables in header files included by more than oneGuy Harris2004-06-011-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
* From Thomas Anders dissects the RTP Payload Type (if media protocol is RTP/AVP)Anders Broman2004-06-011-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
* Add PT_CN_OLD, so the RTP analysis code can get the RTP payload types itGuy Harris2003-09-251-1/+2
| | | | | | needs from this header. svn path=/trunk/; revision=8542
* Add a dissector table for RTP payload types, and have dissectorsGuy Harris2003-08-231-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