aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-t38.h
AgeCommit message (Collapse)AuthorFilesLines
2005-10-03From Alejandro Vaquero:Anders Broman1-0/+16
New "Fax T38 Analysis" added to the "Statistics" menu to: - Reassemble the HDLC t30 frames and dissect the header. - Analyze the UPDTLPacket seq num for packet lost - Stats of V.x Data: - Count the Data bytes - Duration - Wrong seq num - Max Burst of packet lost svn path=/trunk/; revision=16073
2005-08-05More char -> const char warning fixesJörg Mayer1-1/+1
svn path=/trunk/; revision=15218
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-22From Alejandro Vaquero: start T.38 conversations for SDP sessions.Guy Harris1-0/+40
"T38" -> "T.38" in the T.38 dissector. svn path=/trunk/; revision=12374