summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2009-02-10 17:48:29 +0000
committerJoshua Colp <jcolp@digium.com>2009-02-10 17:48:29 +0000
commit8e6780a5b190dbf2194bb0ef72fa2840a6e49804 (patch)
tree405ff8bb2ee3f8802ed7b7b5424ac358fdb9db72 /channels
parentbb327036f11b57acb03e26d39ac54ca472bbb7a3 (diff)
Set the type for the peer structure to be a peer as the default.
(closes issue #14447) Reported by: triccyx git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@174580 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 8d2b8ba75..d932dff05 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -22304,6 +22304,7 @@ static void set_peer_defaults(struct sip_peer *peer)
peer->socket.type = SIP_TRANSPORT_UDP;
peer->socket.fd = -1;
}
+ peer->type = SIP_TYPE_PEER;
ast_copy_flags(&peer->flags[0], &global_flags[0], SIP_FLAGS_TO_COPY);
ast_copy_flags(&peer->flags[1], &global_flags[1], SIP_PAGE2_FLAGS_TO_COPY);
ast_string_field_set(peer, context, sip_cfg.default_context);