dect
/
asterisk
Archived
13
0
Fork 0

Send proper contact in 200 OK to REGISTER

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3550 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2004-07-31 04:04:05 +00:00
parent 426c0ee1bb
commit 1e5c511d9d
1 changed files with 2 additions and 0 deletions

View File

@ -4258,6 +4258,8 @@ static int parse_contact(struct sip_pvt *pvt, struct sip_peer *p, struct sip_req
ast_verbose(VERBOSE_PREFIX_3 "Unregistered SIP '%s'\n", p->name);
return 0;
}
/* For the 200 OK, we should use the received contact */
snprintf(pvt->our_contact, sizeof(pvt->our_contact) - 1, "<%s>", c);
/* Make sure it's a SIP URL */
if (strncasecmp(c, "sip:", 4)) {
ast_log(LOG_NOTICE, "'%s' is not a valid SIP contact (missing sip:) trying to use anyway\n", c);