Merged revisions 110610 via svnmerge from

https://origsvn.digium.com/svn/asterisk/trunk

........
r110610 | file | 2008-03-24 12:28:25 -0300 (Mon, 24 Mar 2008) | 6 lines

Only print out the set_address_from_contact host verbose message if debugging is enabled on the dialog.
(closes issue #12280)
Reported by: rjain
Patches:
      chan_sip.c.diff uploaded by rjain (license 226)

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@110611 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.0
Joshua Colp 17 years ago
parent 5519fd72b9
commit 00bf34e216

@ -9688,7 +9688,9 @@ static int set_address_from_contact(struct sip_pvt *pvt)
port = !ast_strlen_zero(pt) ? atoi(pt) : STANDARD_SIP_PORT;
}
ast_verbose("--- set_address_from_contact host '%s'\n", host);
if (sip_debug_test_pvt(pvt)) {
ast_verbose("--- set_address_from_contact host '%s'\n", host);
}
/* XXX This could block for a long time XXX */
/* We should only do this if it's a name, not an IP */

Loading…
Cancel
Save