From: Joshua Colp Date: Wed, 17 Jan 2007 06:36:41 +0000 (+0000) Subject: Return the correct result when directly writing out a packet so that the core doesn... X-Git-Tag: 1.4.1~266 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9f0ad6093e93a5e8a8b905bf7a0f5dd33ece6902;p=thirdparty%2Fasterisk.git Return the correct result when directly writing out a packet so that the core doesn't then decide to handle it the regular way again. (issue #8833 reported by rcourtna) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@51182 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/rtp.c b/main/rtp.c index ec4a93ab95..7cce2b3ad0 100644 --- a/main/rtp.c +++ b/main/rtp.c @@ -1065,11 +1065,11 @@ static int bridge_p2p_rtp_write(struct ast_rtp *rtp, struct ast_rtp *bridged, un ast_log(LOG_DEBUG, "RTP NAT: Can't write RTP to private address %s:%d, waiting for other end to send audio...\n", ast_inet_ntoa(bridged->them.sin_addr), ntohs(bridged->them.sin_port)); ast_set_flag(bridged, FLAG_NAT_INACTIVE_NOWARN); } - return -1; + return 0; } else if (rtp_debug_test_addr(&bridged->them)) ast_verbose("Sent RTP P2P packet to %s:%d (type %-2.2d, len %-6.6u)\n", ast_inet_ntoa(bridged->them.sin_addr), ntohs(bridged->them.sin_port), bridged_payload, len - hdrlen); - return -1; + return 0; } struct ast_frame *ast_rtp_read(struct ast_rtp *rtp)