Fix verbose messages when IPv6 logic was added

(closes issue ASTERISK-18612)
Reported by: Tim Osman


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@340418 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Paul Belanger
2011-10-12 16:27:23 +00:00
parent fbc51bb795
commit 35fcb785af

View File

@@ -11031,7 +11031,7 @@ static enum sip_result add_sdp(struct sip_request *resp, struct sip_pvt *p, int
needaudio = TRUE; needaudio = TRUE;
if (debug) { if (debug) {
ast_verbose("Audio is at %s\n", ast_sockaddr_stringify_port(&p->ourip)); ast_verbose("Audio is at %s\n", ast_sockaddr_stringify_port(&addr));
} }
/* Ok, we need video. Let's add what we need for video and set codecs. /* Ok, we need video. Let's add what we need for video and set codecs.
@@ -11045,7 +11045,7 @@ static enum sip_result add_sdp(struct sip_request *resp, struct sip_pvt *p, int
if (p->maxcallbitrate) if (p->maxcallbitrate)
snprintf(bandwidth, sizeof(bandwidth), "b=CT:%d\r\n", p->maxcallbitrate); snprintf(bandwidth, sizeof(bandwidth), "b=CT:%d\r\n", p->maxcallbitrate);
if (debug) { if (debug) {
ast_verbose("Video is at %s\n", ast_sockaddr_stringify(&p->ourip)); ast_verbose("Video is at %s\n", ast_sockaddr_stringify(&vdest));
} }
} }
@@ -11058,7 +11058,7 @@ static enum sip_result add_sdp(struct sip_request *resp, struct sip_pvt *p, int
ast_str_append(&m_text, 0, "m=text %d RTP/%s", ast_sockaddr_port(&tdest), ast_str_append(&m_text, 0, "m=text %d RTP/%s", ast_sockaddr_port(&tdest),
t_a_crypto ? "SAVP" : "AVP"); t_a_crypto ? "SAVP" : "AVP");
if (debug) { /* XXX should I use tdest below ? */ if (debug) { /* XXX should I use tdest below ? */
ast_verbose("Text is at %s\n", ast_sockaddr_stringify(&p->ourip)); ast_verbose("Text is at %s\n", ast_sockaddr_stringify(&taddr));
} }
} }