mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-16 06:48:25 +00:00
Merged revisions 44186 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r44186 | pcadach | 2006-10-03 00:52:56 +0600 (Втр, 03 Окт 2006) | 1 line Missed part of userconf functionality for chan_h323 ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@44196 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -34,6 +34,10 @@ hassip = yes
|
|||||||
;
|
;
|
||||||
hasiax = yes
|
hasiax = yes
|
||||||
;
|
;
|
||||||
|
; Create H.323 friend
|
||||||
|
;
|
||||||
|
;hash323 = yes
|
||||||
|
;
|
||||||
; Create manager entry
|
; Create manager entry
|
||||||
;
|
;
|
||||||
hasmanager = no
|
hasmanager = no
|
||||||
@@ -59,6 +63,7 @@ pickupgroup = 1
|
|||||||
;hasvoicemail = yes
|
;hasvoicemail = yes
|
||||||
;hassip = yes
|
;hassip = yes
|
||||||
;hasiax = no
|
;hasiax = no
|
||||||
|
;hash323 = no
|
||||||
;hasmanager = no
|
;hasmanager = no
|
||||||
;callwaiting = no
|
;callwaiting = no
|
||||||
;context = international
|
;context = international
|
||||||
|
|||||||
@@ -1536,6 +1536,10 @@ static void pbx_load_users(void)
|
|||||||
snprintf(tmp, sizeof(tmp), "IAX/%s", cat);
|
snprintf(tmp, sizeof(tmp), "IAX/%s", cat);
|
||||||
append_interface(iface, sizeof(iface), tmp);
|
append_interface(iface, sizeof(iface), tmp);
|
||||||
}
|
}
|
||||||
|
if (ast_true(ast_config_option(cfg, cat, "hash323"))) {
|
||||||
|
snprintf(tmp, sizeof(tmp), "H323/%s", cat);
|
||||||
|
append_interface(iface, sizeof(iface), tmp);
|
||||||
|
}
|
||||||
hasexten = ast_config_option(cfg, cat, "hasexten");
|
hasexten = ast_config_option(cfg, cat, "hasexten");
|
||||||
if (hasexten && !ast_true(hasexten))
|
if (hasexten && !ast_true(hasexten))
|
||||||
continue;
|
continue;
|
||||||
|
|||||||
Reference in New Issue
Block a user