Skip to content
Snippets Groups Projects
Commit 8cd25fc0 authored by David Vossel's avatar David Vossel
Browse files

user.conf entries in SIP were not having their peer type set.

(closes issue #16120)
Reported by: jsmith


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@227238 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 8021cf48
Branches
Tags
No related merge requests found
......@@ -25908,6 +25908,8 @@ static int reload_config(enum channelreloadreason reason)
if (ast_true(hassip) || (!hassip && genhassip)) {
peer = build_peer(cat, gen, ast_variable_browse(ucfg, cat), 0, 0);
if (peer) {
/* user.conf entries are always of type friend */
peer->type = SIP_TYPE_USER | SIP_TYPE_PEER;
ao2_t_link(peers, peer, "link peer into peer table");
if ((peer->type & SIP_TYPE_PEER) && peer->addr.sin_addr.s_addr) {
ao2_t_link(peers_by_ip, peer, "link peer into peers_by_ip table");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment