[svn-commits] file: trunk r417143 - in /trunk: ./ res/res_rtp_asterisk.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Mon Jun 23 13:50:21 CDT 2014
Author: file
Date: Mon Jun 23 13:50:18 2014
New Revision: 417143
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=417143
Log:
res_rtp_asterisk: Return the length of data written when sending via ICE instead of 0.
ASTERISK-23834 #close
Reported by: Richard Kenner
........
Merged revisions 417141 from http://svn.asterisk.org/svn/asterisk/branches/11
........
Merged revisions 417142 from http://svn.asterisk.org/svn/asterisk/branches/12
Modified:
trunk/ (props changed)
trunk/res/res_rtp_asterisk.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-12-merged' - no diff available.
Modified: trunk/res/res_rtp_asterisk.c
URL: http://svnview.digium.com/svn/asterisk/trunk/res/res_rtp_asterisk.c?view=diff&rev=417143&r1=417142&r2=417143
==============================================================================
--- trunk/res/res_rtp_asterisk.c (original)
+++ trunk/res/res_rtp_asterisk.c Mon Jun 23 13:50:18 2014
@@ -1658,7 +1658,7 @@
if (pj_ice_sess_send_data(rtp->ice, rtcp ? AST_RTP_ICE_COMPONENT_RTCP : AST_RTP_ICE_COMPONENT_RTP, temp, len) == PJ_SUCCESS) {
*ice = 1;
- return 0;
+ return len;
}
}
#endif
More information about the svn-commits
mailing list