diff options
author | Peter Kozak <spag@golwen.net> | 2013-04-11 10:57:29 +0200 |
---|---|---|
committer | Peter Kozak <spag@golwen.net> | 2013-04-11 10:57:29 +0200 |
commit | 8d4ad7908c78357845b82ad9fb298cf1f9612093 (patch) | |
tree | 2215353f324c42d5fdebc47fe3699439d3a152b9 /misc/freeswitch | |
parent | fe5f68796051261bb1da497c1a5bb07c8d2914ee (diff) |
port fixed
Diffstat (limited to 'misc/freeswitch')
-rw-r--r-- | misc/freeswitch/scripts/configuration.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/freeswitch/scripts/configuration.lua b/misc/freeswitch/scripts/configuration.lua index b23f76a..16dbed7 100644 --- a/misc/freeswitch/scripts/configuration.lua +++ b/misc/freeswitch/scripts/configuration.lua @@ -289,9 +289,9 @@ function conf_event_socket(database) require 'configuration.simple_xml' local xml = configuration.simple_xml.SimpleXml:new(); - local settings = { password = 'ClueCon', ['listen-ip'] = '127.0.0.1', ['listen-port'] = '80212' }; + local settings = { password = 'ClueCon', ['listen-ip'] = '127.0.0.1', ['listen-port'] = '8021' }; require 'common.configuration_table'; - settings = common.configuration_table.get(database, 'event_socket', 'settings', settings) or settings; + settings = common.configuration_table.get(database, 'event_socket', 'settings', {settings = settings}); XML_STRING = xml:element{ 'document', |