dect
/
asterisk
Archived
13
0
Fork 0

Copy the address into the peer structure after we set the default port

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@274947 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
simon.perreault 2010-07-09 13:30:37 +00:00
parent e0a1ff82c6
commit 61bb681575
1 changed files with 2 additions and 1 deletions

View File

@ -12526,7 +12526,6 @@ static enum parse_register_result parse_register_contact(struct sip_pvt *pvt, st
ast_string_field_set(pvt, our_contact, "");
return PARSE_REGISTER_FAILED;
}
ast_sockaddr_copy(&peer->addr, &testsa);
/* If we have a port number in the given URI, make sure we do remember to not check for NAPTR/SRV records.
The domain part is actually a host. */
@ -12537,6 +12536,8 @@ static enum parse_register_result parse_register_contact(struct sip_pvt *pvt, st
transport_type == SIP_TRANSPORT_TLS ?
STANDARD_TLS_PORT : STANDARD_SIP_PORT);
}
ast_sockaddr_copy(&peer->addr, &testsa);
} else {
/* Don't trust the contact field. Just use what they came to us
with */