mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Fix port numbers in IAX2 and iax2prov (bug #2261)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3618 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -6601,10 +6601,9 @@ static int set_config(char *config_file, struct sockaddr_in* sin){
|
||||
}
|
||||
v = ast_variable_browse(cfg, "general");
|
||||
while(v) {
|
||||
if (!strcasecmp(v->name, "port")){
|
||||
ast_log(LOG_WARNING, "Ignoring port for now\n");
|
||||
#if 0
|
||||
if (!strcasecmp(v->name, "bindport")){
|
||||
sin->sin_port = ntohs(atoi(v->value));
|
||||
#if 0
|
||||
if(last_port==0){
|
||||
last_port=sin->sin_port;
|
||||
#if 0
|
||||
|
@@ -289,7 +289,7 @@ static int iax_template_parse(struct iax_template *cur, struct ast_config *cfg,
|
||||
foundportno = 1;
|
||||
} else {
|
||||
cur->serverport = x;
|
||||
foundserverportno = 0;
|
||||
foundserverportno = 1;
|
||||
}
|
||||
} else
|
||||
ast_log(LOG_WARNING, "Ignoring invalid %s '%s' for '%s' at line %d\n", v->name, v->value, s, v->lineno);
|
||||
|
Reference in New Issue
Block a user