Merge "chan_iax2: Reload of iax peer results in loss of host address/port"

pull/7/head
Joshua Colp 8 years ago committed by Gerrit Code Review
commit aec2a087ed

@ -12913,7 +12913,13 @@ static struct iax2_peer *build_peer(const char *name, struct ast_variable *v, st
/* Non-dynamic. Make sure we become that way if we're not */
AST_SCHED_DEL(sched, peer->expire);
ast_clear_flag64(peer, IAX_DYNAMIC);
peer->addr.ss.ss_family = AST_AF_UNSPEC;
if (peer->dnsmgr) {
// Make sure we refresh dnsmgr if we're using it
ast_dnsmgr_refresh(peer->dnsmgr);
} else {
// Or just invalidate the address
peer->addr.ss.ss_family = AST_AF_UNSPEC;
}
if (ast_dnsmgr_lookup(v->value, &peer->addr, &peer->dnsmgr, srvlookup ? "_iax._udp" : NULL)) {
return peer_unref(peer);
}

Loading…
Cancel
Save