From: Joshua Colp Date: Mon, 14 May 2007 18:21:30 +0000 (+0000) Subject: If no port is specified in the outboundproxy setting then use the standard SIP port... X-Git-Tag: 1.6.0-beta1~3^2~2684 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4fbb4494445fd96e266f7681588e6fd998cb5859;p=thirdparty%2Fasterisk.git If no port is specified in the outboundproxy setting then use the standard SIP port. (issue #9665 reported by tootai) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@64274 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index e9e38d08f9..dc46c66c65 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -1772,8 +1772,7 @@ static struct sip_proxy *proxy_allocate(char *name, char *port, int force) return NULL; proxy->force = force; ast_copy_string(proxy->name, name, sizeof(proxy->name)); - if (!ast_strlen_zero(port)) - proxy->ip.sin_port = htons(atoi(port)); + proxy->ip.sin_port = htons((!ast_strlen_zero(port) ? atoi(port) : STANDARD_SIP_PORT)); proxy_update(proxy); return proxy; }