Wireshark-commits: [Wireshark-commits] rev 38950: /trunk/epan/dissectors/ /trunk/epan/dissectors/:

Date: Fri, 09 Sep 2011 05:23:43 GMT
http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=38950

User: etxrab
Date: 2011/09/08 10:23 PM

Log:
 /* Get the fields in the second octet */
 	octet2 = tvb_get_guint8( tvb, offset + 1 );
 	payload_type = RTP_PAYLOAD_TYPE( octet2 );
 
 	/* Check for a sensible payload type
 	   (recognised static and preferred dynamic ranges) */
 	if ((payload_type <= PT_H263) ||
 		/* Alex Lindberg - Modified range to use RTP Type Names */
 	    (payload_type >= PT_UNDF_96 && payload_type <= PT_UNDF_127)) {
 
 evaluates to allways trye as far as I can tell.

Directory: /trunk/epan/dissectors/
  Changes    Path            Action
  +3 -17     packet-rtp.c    Modified