[svn-commits] dvossel: trunk r227238 - /trunk/channels/chan_sip.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Nov 3 11:13:01 CST 2009


Author: dvossel
Date: Tue Nov  3 11:12:52 2009
New Revision: 227238

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=227238
Log:
user.conf entries in SIP were not having their peer type set.

(closes issue #16120)
Reported by: jsmith

Modified:
    trunk/channels/chan_sip.c

Modified: trunk/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/trunk/channels/chan_sip.c?view=diff&rev=227238&r1=227237&r2=227238
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Tue Nov  3 11:12:52 2009
@@ -25908,6 +25908,8 @@
 				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");




More information about the svn-commits mailing list