diff options
author | Peter Kozak <spag@golwen.net> | 2013-06-11 14:54:31 +0200 |
---|---|---|
committer | Peter Kozak <spag@golwen.net> | 2013-06-11 14:54:31 +0200 |
commit | c51e4bad9ed2a2e1adaeda94ff1ac983106462f6 (patch) | |
tree | dafc9627680b16407b8211255634380451358fa4 /misc/freeswitch | |
parent | 4f2e4d63597904c0f2b71398619ee3d1294f297a (diff) |
set_privacy method removed
Diffstat (limited to 'misc/freeswitch')
-rw-r--r-- | misc/freeswitch/scripts/dialplan/session.lua | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/misc/freeswitch/scripts/dialplan/session.lua b/misc/freeswitch/scripts/dialplan/session.lua index 9c43e74..1d907c5 100644 --- a/misc/freeswitch/scripts/dialplan/session.lua +++ b/misc/freeswitch/scripts/dialplan/session.lua @@ -211,17 +211,6 @@ function Session.set_callee_id(self, number, name) end end --- Set caller Privacy header -function Session.set_privacy(self, privacy) - if privacy then - self.session:setVariable('cid_type', 'none'); - self.session:setVariable('sip_h_Privacy', 'id'); - else - self.session:setVariable('cid_type', 'none'); - self.session:setVariable('sip_h_Privacy', 'none'); - end -end - function Session.set_auth_account(self, auth_account) if auth_account then |