[asterisk-commits] kmoore: branch 12 r401291 - /branches/12/channels/chan_iax2.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Sat Oct 19 16:53:11 CDT 2013


Author: kmoore
Date: Sat Oct 19 16:53:08 2013
New Revision: 401291

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=401291
Log:
Fix IAX2 incoming call address lookups

This fixes address lookup for incoming calls without a peer definition.
The address family was unset instead of being set to AST_AF_UNSPEC
which was causing lookup failures on "127.0.0.1". This is one of the
causes of the current failure of the app_page integration test.

Review: https://reviewboard.asterisk.org/r/2933/

Modified:
    branches/12/channels/chan_iax2.c

Modified: branches/12/channels/chan_iax2.c
URL: http://svnview.digium.com/svn/asterisk/branches/12/channels/chan_iax2.c?view=diff&rev=401291&r1=401290&r2=401291
==============================================================================
--- branches/12/channels/chan_iax2.c (original)
+++ branches/12/channels/chan_iax2.c Sat Oct 19 16:53:08 2013
@@ -4491,6 +4491,7 @@
 	if (!(peer = find_peer(peername, 1))) {
 		struct ast_sockaddr peer_addr;
 
+		peer_addr.ss.ss_family = AST_AF_UNSPEC;
 		cai->found = 0;
 		if (ast_get_ip_or_srv(&peer_addr, peername, srvlookup ? "_iax._udp" : NULL)) {
 			ast_log(LOG_WARNING, "No such host: %s\n", peername);




More information about the asterisk-commits mailing list