[svn-commits] file: branch 1.4 r47639 - /branches/1.4/main/rtp.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Tue Nov 14 17:14:07 MST 2006


Author: file
Date: Tue Nov 14 18:14:07 2006
New Revision: 47639

URL: http://svn.digium.com/view/asterisk?view=rev&rev=47639
Log:
Turn notice about unknown RTCP packet type into a debug message instead.

Modified:
    branches/1.4/main/rtp.c

Modified: branches/1.4/main/rtp.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/rtp.c?view=diff&rev=47639&r1=47638&r2=47639
==============================================================================
--- branches/1.4/main/rtp.c (original)
+++ branches/1.4/main/rtp.c Tue Nov 14 18:14:07 2006
@@ -899,7 +899,8 @@
 				ast_verbose("Received a BYE from %s:%d\n", ast_inet_ntoa(rtp->rtcp->them.sin_addr), ntohs(rtp->rtcp->them.sin_port));
 			break;
 		default:
-			ast_log(LOG_NOTICE, "Unknown RTCP packet (pt=%d) received from %s:%d\n", pt, ast_inet_ntoa(rtp->rtcp->them.sin_addr), ntohs(rtp->rtcp->them.sin_port));
+			if (option_debug)
+				ast_log(LOG_DEBUG, "Unknown RTCP packet (pt=%d) received from %s:%d\n", pt, ast_inet_ntoa(rtp->rtcp->them.sin_addr), ntohs(rtp->rtcp->them.sin_port));
 			break;
 		}
 		position += (length + 1);



More information about the svn-commits mailing list