mirror of
https://github.com/asterisk/asterisk.git
synced 2026-06-28 19:33:10 -07:00
Return behavior I removed. I did not remember that you could just add a localnet entry to make it work.
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@55717 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
+4
-2
@@ -1771,14 +1771,16 @@ static void build_via(struct sip_pvt *p)
|
||||
*/
|
||||
static enum sip_result ast_sip_ouraddrfor(struct in_addr *them, struct in_addr *us)
|
||||
{
|
||||
struct sockaddr_in theirs;
|
||||
struct sockaddr_in theirs, ours;
|
||||
|
||||
/* Get our local information */
|
||||
ast_ouraddrfor(them, us);
|
||||
theirs.sin_addr = *them;
|
||||
ours.sin_addr = *us;
|
||||
|
||||
if (localaddr && externip.sin_addr.s_addr &&
|
||||
ast_apply_ha(localaddr, &theirs)) {
|
||||
(ast_apply_ha(localaddr, &theirs)) &&
|
||||
(!ast_apply_ha(localaddr, &ours))) {
|
||||
if (externexpire && time(NULL) >= externexpire) {
|
||||
struct ast_hostent ahp;
|
||||
struct hostent *hp;
|
||||
|
||||
Reference in New Issue
Block a user