aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtp.h
AgeCommit message (Collapse)AuthorFilesLines
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-02-01Collect and use some SRTP information.Anders Broman1-20/+21
svn path=/trunk/; revision=40794
2010-04-14Use the sample rate from SDP info in RTP stream analysis.Anders Broman1-0/+6
svn path=/trunk/; revision=32466
2009-05-19Get info about media type(Video or not) a first step towards usage in rtp ↵Anders Broman1-6/+11
statistics. svn path=/trunk/; revision=28415
2007-11-02display SRTP isntead of RTP if stream is established like a SRTPTomas Kukosa1-0/+1
svn path=/trunk/; revision=23337
2007-08-21From Neil Piercy:Jaap Keuter1-2/+52
This patch set provides a an API for out of band signalling protocols to register flows as SRTP/SRTCP using extended versions of the existing rt(c)p_add_address functions. At present the encrypted portions of the payloads are simply skipped, and the auth tags etc added as fields. svn path=/trunk/; revision=22562
2007-02-21From Richard van der Hoff:Anders Broman1-1/+8
Here's a patch which adds an option enabling subdissectors to request defragmentation of packets over RTP streams, using the pinfo->desegment_{len,offset} API. svn path=/trunk/; revision=20891
2006-05-21change a whole bunch of ethereal into wiresharkRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18196
2005-11-05Packet-amr Register as "AMR" not "amr".Anders Broman1-0/+1
Add Dynamic PT:s mimestring to rtp_info if avalable. Use Dynamic PT:s mime string to find clock rate. svn path=/trunk/; revision=16397
2005-07-30Make some funtions static. More char -> const char warning fixesJörg Mayer1-1/+1
svn path=/trunk/; revision=15146
2005-03-27Previous commit failed doing them one by one.Anders Broman1-2/+6
From Alejandro Vaquero : Find attached a patch for SDP sessions to: - Dissect Dynamic payload types in RTP packets - Add the dynamic payload type description in RTP packets - Add RTP dynamic payload types description in the Voip Calls Graph, in the RTP and SDP. svn path=/trunk/; revision=13941
2005-03-10From Alejandro Vaquero:Luis Ontanon1-1/+4
- Automatic dissection of RTP events (RFC2833) set in SDP sessions. - Add RTP events (RFC2833) to the Voip Graph svn path=/trunk/; revision=13697
2005-02-05From Alejandro Vaquero:Anders Broman1-0/+1
a patch that to shows the RTP streams in the Graph. Now using an RTP tap (not using the rtp_stream). svn path=/trunk/; revision=13300
2004-12-21Make the array for the "setup method" for RTP, RTCP, and T.38Guy Harris1-2/+2
conversations large enough to hold the maximum setup method size plus a trailing '\0'. Make the maximum setup method size 7, so that when the trailing '\0' is included the total array length is a power of 2. (The longest string currently used is "Skinny", which fits in 7 characters). This fixes problems in the RTP and RTCP dissectors similar to the one found in the T.38 dissector. Undo the previous change to packet-t38.c, as it's now safe to store in method[MAX_T38_SETUP_METHOD_SIZE], because the array now has MAX_T38_SETUP_METHOD_SIZE+1 characters. (Should we use "strlcpy()", and supply our own "strlcpy()" if the system and/or C library doesn't supply it? Its semantics are a bit cleaner than those of the "strncpy()"/null-terminate idiom, perhaps making it less likely that mistakes of this sort will be made.) svn path=/trunk/; revision=12803
2004-10-17From Alejandro Vaquero: in the RTP analysis code, don't analyze packetsGuy Harris1-0/+1
that have an RTP version other than 2. svn path=/trunk/; revision=12332
2004-08-30Pass an "address *" to "rtp_add_address()" and "rtcp_add_address()", soGuy Harris1-1/+1
so that they could handle IPv6 addresses. Clean up white space. svn path=/trunk/; revision=11854
2004-07-18Move dissectors to epan/dissectors directory.Gilbert Ramirez1-0/+65
Also move ncp222.py, x11-fields, process-x11-fields.pl, make-reg-dotc, and make-reg-dotc.py. Adjust #include lines in files that include packet-*.h files. svn path=/trunk/; revision=11410