mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-03 04:16:43 +00:00
Use hostname instead of IP for sip registration
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@826 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2537,8 +2537,8 @@ static int transmit_register(struct sip_registry *r, char *cmd, char *auth)
|
|||||||
ast_log(LOG_DEBUG, "Scheduled a timeout # %d\n", r->timeout);
|
ast_log(LOG_DEBUG, "Scheduled a timeout # %d\n", r->timeout);
|
||||||
}
|
}
|
||||||
|
|
||||||
snprintf(from, sizeof(from), "<sip:%s@%s>;tag=as%08x", r->username, inet_ntoa(r->addr.sin_addr) /* r->hostname */, p->tag);
|
snprintf(from, sizeof(from), "<sip:%s@%s>;tag=as%08x", r->username, r->hostname, p->tag);
|
||||||
snprintf(to, sizeof(to), "<sip:%s@%s>;tag=as%08x", r->username, inet_ntoa(r->addr.sin_addr) /* r->hostname */, p->tag);
|
snprintf(to, sizeof(to), "<sip:%s@%s>;tag=as%08x", r->username, r->hostname, p->tag);
|
||||||
|
|
||||||
snprintf(addr, sizeof(addr), "sip:%s", inet_ntoa(r->addr.sin_addr));
|
snprintf(addr, sizeof(addr), "sip:%s", inet_ntoa(r->addr.sin_addr));
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user