diff options
author | spag <spag@golwen.net> | 2013-01-27 10:17:21 +0100 |
---|---|---|
committer | spag <spag@golwen.net> | 2013-01-27 10:17:21 +0100 |
commit | 45af07cb093eb0202967cf0d0fc058ca58f0b782 (patch) | |
tree | 703c3e8ec3dbe3d5e3dcefe8c7eda817e89f19ff /misc/freeswitch/scripts/dialplan/dialplan.lua | |
parent | e5fa1fc32609426693b43a4e8b6208867371d30e (diff) |
added gateway technology
Diffstat (limited to 'misc/freeswitch/scripts/dialplan/dialplan.lua')
-rw-r--r-- | misc/freeswitch/scripts/dialplan/dialplan.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/freeswitch/scripts/dialplan/dialplan.lua b/misc/freeswitch/scripts/dialplan/dialplan.lua index 49d698b..ff4adc6 100644 --- a/misc/freeswitch/scripts/dialplan/dialplan.lua +++ b/misc/freeswitch/scripts/dialplan/dialplan.lua @@ -135,7 +135,7 @@ end function Dialplan.auth_gateway(self) require 'common.gateway' local gateway_class = common.gateway.Gateway:new{ log = self.log, database = self.database}; - local gateway = gateway_class:authenticate('sip', self.caller); + local gateway = gateway_class:authenticate(self.caller); if gateway then log:info('AUTH_GATEWAY - ', gateway.auth_source, ' ~ ', gateway.auth_pattern, ', gateway=', gateway.id, ', name: ', gateway.name, ', ip: ', self.caller.sip_contact_host); |