From: Mark Spencer Date: Sat, 31 Jul 2004 04:04:05 +0000 (+0000) Subject: Send proper contact in 200 OK to REGISTER X-Git-Tag: 1.0.0-rc2~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2de01f7b7e5b25e8a7f3b5e7aa98cce7995fb9cd;p=thirdparty%2Fasterisk.git Send proper contact in 200 OK to REGISTER git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3550 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 756e11a9be..27de390e97 100755 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -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);