Freeswitch restart after running a script on inbound call

Status
Not open for further replies.

cargreg

New Member
Apr 26, 2018
27
2
3
36
Hi Guys,

i use this dialplan for the inbound call

condition destination_number ^(phone_number)$
action lua hangup.lua $1
action transfer extension XML domain

this is the script that i call


require "resources.functions.split"
local DBI = require "DBI";
local db_type = "MySQL";
local Database = require "resources.functions.database";
local dbh = Database.new('system');
local callee_id_number = argv[1];
local domain_uuid = '';
local domain_name = '';
local attrs = '';
local mio_ip;

freeswitch.consoleLog("SCRIPT","-------------------------------------------------------\n");
freeswitch.consoleLog("SCRIPT",callee_id_number.."\n");

local sql = [[
SELECT
domain_uuid
FROM v_dialplans
WHERE dialplan_number = :numero_chiamato
]];

dbh:query(sql, {numero_chiamato=callee_id_number}, function(rows)
domain_uuid = rows["domain_uuid"];
end);

freeswitch.consoleLog("SCRIPT","DOMAIN_UUID:" ..domain_uuid.. "\n");

local sql = [[
SELECT
domain_name
FROM v_domains
WHERE domain_uuid = :domain_uuid
]];

dbh:query(sql, {domain_uuid=domain_uuid}, function(rows)
domain_name = rows["domain_name"];
end);

freeswitch.consoleLog("SCRIPT","DOMAIN_NAME:" ..domain_name.. "\n");

dbd, err = DBI.Connect(
'MySQL',
'opensips',
'username',
'password',
'opensips_ip',
'3306');
assert(dbd, err);
local statement,err = dbd:prepare("select attrs from domain where domain = '".. domain_name .."' LIMIT 1;");
assert(statement,err)
statement:execute();
for row in statement:rows(true) do
attrs=row['attrs'];
end
freeswitch.consoleLog("SCRIPT", attrs.."\n");
local app = split(attrs,':',true);
freeswitch.consoleLog("SCRIPT",app[1].."\n");
freeswitch.consoleLog("SCRIPT",app[2].."\n");
freeswitch.consoleLog("SCRIPT",app[3].."\n");
mio_ip=app[2];
local app=assert(io.popen("curl ifconfig.me"))
local data = app:read('*a')
freeswitch.consoleLog("SCRIPT",data.."\n");
if string.find(mio_ip,data)then
freeswitch.consoleLog("SCRIPT","IPS are equal \n");
session:preAnswer();
else
freeswitch.consoleLog("SCRIPT","IPS are different\n");
session:hangup();
end

after the script execution freeswitch restarts,

2022-09-08 11:18:41.377834 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'console'
2022-09-08 11:18:41.379249 0.00% [NOTICE] switch_loadable_module.c:172 Adding Endpoint 'error'
2022-09-08 11:18:41.379274 0.00% [NOTICE] switch_loadable_module.c:172 Adding Endpoint 'group'
2022-09-08 11:18:41.379288 0.00% [NOTICE] switch_loadable_module.c:172 Adding Endpoint 'user'
2022-09-08 11:18:41.379307 0.00% [NOTICE] switch_loadable_module.c:172 Adding Endpoint 'pickup'
2022-09-08 11:18:41.379334 0.00% [NOTICE] switch_loadable_module.c:273 Adding Dialplan 'inline'
2022-09-08 11:18:41.379353 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'blind_transfer_ack'
2022-09-08 11:18:41.379377 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'bind_digit_action'
2022-09-08 11:18:41.379405 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'capture'
2022-09-08 11:18:41.379423 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'clear_digit_action'
2022-09-08 11:18:41.379452 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'digit_action_set_realm'
2022-09-08 11:18:41.379488 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'privacy'
2022-09-08 11:18:41.379517 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'set_audio_level'
2022-09-08 11:18:41.379543 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'set_mute'
2022-09-08 11:18:41.379565 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'flush_dtmf'
2022-09-08 11:18:41.379584 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'hold'
2022-09-08 11:18:41.379612 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'unhold'
2022-09-08 11:18:41.379650 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'mutex'
2022-09-08 11:18:41.379665 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'page'
2022-09-08 11:18:41.379689 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'transfer'
2022-09-08 11:18:41.379713 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'check_acl'
2022-09-08 11:18:41.379760 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'verbose_events'
2022-09-08 11:18:41.379802 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'novideo'
2022-09-08 11:18:41.379823 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'cng_plc'
2022-09-08 11:18:41.379852 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'early_hangup'
2022-09-08 11:18:41.379879 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'sleep'
2022-09-08 11:18:41.379906 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'delay_echo'
2022-09-08 11:18:41.379930 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'strftime'
2022-09-08 11:18:41.379962 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'phrase'
2022-09-08 11:18:41.379990 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'eval'
2022-09-08 11:18:41.380019 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'set_media_stats'
2022-09-08 11:18:41.380048 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'stop'
2022-09-08 11:18:41.380075 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'set_zombie_exec'
2022-09-08 11:18:41.380101 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'pre_answer'
2022-09-08 11:18:41.380144 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'answer'
2022-09-08 11:18:41.380183 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'wait_for_answer'
2022-09-08 11:18:41.380217 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'wait_for_video_ready'
2022-09-08 11:18:41.380253 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'hangup'
2022-09-08 11:18:41.380291 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'set_name'
2022-09-08 11:18:41.380332 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'presence'
2022-09-08 11:18:41.380365 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'log'
2022-09-08 11:18:41.380396 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'info'
2022-09-08 11:18:41.380430 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'event'
2022-09-08 11:18:41.380469 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'sound_test'
2022-09-08 11:18:41.380514 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'export'
2022-09-08 11:18:41.380546 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'bridge_export'
2022-09-08 11:18:41.380578 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'set'
2022-09-08 11:18:41.380610 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'multiset'
2022-09-08 11:18:41.380662 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'push'
2022-09-08 11:18:41.380685 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'unshift'
2022-09-08 11:18:41.380718 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'set_global'
2022-09-08 11:18:41.380742 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'set_profile_var'
2022-09-08 11:18:41.380767 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'unset'
2022-09-08 11:18:41.380796 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'multiunset'
2022-09-08 11:18:41.380824 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'capture_text'
2022-09-08 11:18:41.380844 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'acknowledge_call'
2022-09-08 11:18:41.380879 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'ring_ready'
2022-09-08 11:18:41.380905 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'remove_bugs'
2022-09-08 11:18:41.380930 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'break'
2022-09-08 11:18:41.380949 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'detect_speech'
2022-09-08 11:18:41.380973 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'play_and_detect_speech'
2022-09-08 11:18:41.380995 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'ivr'
2022-09-08 11:18:41.381022 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'redirect'
2022-09-08 11:18:41.381050 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'video_refresh'
2022-09-08 11:18:41.381073 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'video_decode'
2022-09-08 11:18:41.381094 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'send_info'
2022-09-08 11:18:41.381125 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'jitterbuffer'
2022-09-08 11:18:41.381150 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'send_display'
2022-09-08 11:18:41.381175 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'respond'
2022-09-08 11:18:41.381199 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'deflect'
2022-09-08 11:18:41.381225 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'recovery_refresh'
2022-09-08 11:18:41.381249 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'reuse_caller_profile'
2022-09-08 11:18:41.381276 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'queue_dtmf'
2022-09-08 11:18:41.381302 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'send_dtmf'
2022-09-08 11:18:41.381328 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'sched_cancel'
2022-09-08 11:18:41.381356 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'sched_hangup'
2022-09-08 11:18:41.381382 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'sched_broadcast'
2022-09-08 11:18:41.381409 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'sched_transfer'
2022-09-08 11:18:41.381435 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'execute_extension'
2022-09-08 11:18:41.381463 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'sched_heartbeat'
2022-09-08 11:18:41.381499 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'enable_heartbeat'
2022-09-08 11:18:41.381528 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'filter_codecs'
2022-09-08 11:18:41.381551 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'enable_keepalive'
2022-09-08 11:18:41.381576 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'media_reset'
2022-09-08 11:18:41.381603 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'mkdir'
2022-09-08 11:18:41.381635 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'rename'
2022-09-08 11:18:41.381662 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'transfer_vars'
2022-09-08 11:18:41.381691 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'soft_hold'
2022-09-08 11:18:41.381722 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'bind_meta_app'
2022-09-08 11:18:41.381753 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'unbind_meta_app'
2022-09-08 11:18:41.381782 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'block_dtmf'
2022-09-08 11:18:41.381809 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'unblock_dtmf'
2022-09-08 11:18:41.381832 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'intercept'
2022-09-08 11:18:41.381862 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'eavesdrop'
2022-09-08 11:18:41.381893 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'native_eavesdrop'
2022-09-08 11:18:41.381930 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'three_way'
2022-09-08 11:18:41.381958 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'set_user'
2022-09-08 11:18:41.381984 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'stop_dtmf'
2022-09-08 11:18:41.382015 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'start_dtmf'
2022-09-08 11:18:41.382039 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'stop_dtmf_generate'
2022-09-08 11:18:41.382062 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'start_dtmf_generate'
2022-09-08 11:18:41.382088 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'stop_tone_detect'
2022-09-08 11:18:41.382115 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'fax_detect'
2022-09-08 11:18:41.382144 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'tone_detect'
2022-09-08 11:18:41.382174 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'echo'
2022-09-08 11:18:41.382196 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'park'
2022-09-08 11:18:41.382226 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'park_state'
2022-09-08 11:18:41.382249 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'gentones'
2022-09-08 11:18:41.382279 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'playback'
2022-09-08 11:18:41.382302 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'broadcast'
2022-09-08 11:18:41.382333 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'endless_playback'
2022-09-08 11:18:41.382357 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'loop_playback'
2022-09-08 11:18:41.382382 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'att_xfer'
2022-09-08 11:18:41.382409 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'read'
2022-09-08 11:18:41.382439 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'play_and_get_digits'
2022-09-08 11:18:41.382467 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'stop_video_write_overlay'
2022-09-08 11:18:41.382508 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'video_write_overlay'
2022-09-08 11:18:41.382532 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'stop_record_session'
2022-09-08 11:18:41.382559 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'record_session'
2022-09-08 11:18:41.382584 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'record_session_mask'
2022-09-08 11:18:41.382610 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'record_session_unmask'
2022-09-08 11:18:41.382640 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'record_session_pause'
2022-09-08 11:18:41.382666 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'record_session_resume'
2022-09-08 11:18:41.382691 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'record'
2022-09-08 11:18:41.382719 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'preprocess'
2022-09-08 11:18:41.382744 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'stop_displace_session'
2022-09-08 11:18:41.382769 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'displace_session'
2022-09-08 11:18:41.382795 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'speak'
2022-09-08 11:18:41.382826 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'clear_speech_cache'
2022-09-08 11:18:41.382849 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'bridge'
2022-09-08 11:18:41.382876 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'system'
2022-09-08 11:18:41.382899 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'bgsystem'
2022-09-08 11:18:41.382925 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'say'
2022-09-08 11:18:41.382949 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'detect_audio'
2022-09-08 11:18:41.382975 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'detect_silence'
2022-09-08 11:18:41.382998 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'wait_for_silence'
2022-09-08 11:18:41.383023 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'session_loglevel'
2022-09-08 11:18:41.383047 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'limit'
2022-09-08 11:18:41.383074 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'limit_hash'
2022-09-08 11:18:41.383094 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'limit_execute'
2022-09-08 11:18:41.383121 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'limit_hash_execute'
2022-09-08 11:18:41.383148 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'pickup'
2022-09-08 11:18:41.383172 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'deduplicate_dtmf'
2022-09-08 11:18:41.383199 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'vad_test'
2022-09-08 11:18:41.383224 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'debug_media'
2022-09-08 11:18:41.383250 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'strepoch'
2022-09-08 11:18:41.383274 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'page'
2022-09-08 11:18:41.383300 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'strmicroepoch'
2022-09-08 11:18:41.383324 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'chat'
2022-09-08 11:18:41.383351 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'strftime'
2022-09-08 11:18:41.383374 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'presence'
2022-09-08 11:18:41.383401 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'file_string'
2022-09-08 11:18:41.383426 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'file'
2022-09-08 11:18:41.383450 0.00% [NOTICE] switch_loadable_module.c:621 Adding Chat interface 'event'
2022-09-08 11:18:41.383473 0.00% [NOTICE] switch_loadable_module.c:621 Adding Chat interface 'api'
2022-09-08 11:18:41.386452 0.00% [DEBUG] mod_spandsp_fax.c:213 FAX timer thread started.
2022-09-08 11:18:41.407353 0.00% [DEBUG] mod_spandsp.c:895 mod_spandsp loaded, using spandsp library version [20120902 163333]
2022-09-08 11:18:41.407414 0.00% [NOTICE] switch_loadable_module.c:172 Adding Endpoint 'modem'
2022-09-08 11:18:41.407440 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec DVI4 6 ADPCM (IMA) 16000hz 10ms 1ch 64000bps
2022-09-08 11:18:41.407446 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec DVI4 6 ADPCM (IMA) 16000hz 20ms 1ch 64000bps
2022-09-08 11:18:41.407449 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec DVI4 6 ADPCM (IMA) 16000hz 30ms 1ch 64000bps
2022-09-08 11:18:41.407452 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec DVI4 6 ADPCM (IMA) 16000hz 40ms 1ch 64000bps
2022-09-08 11:18:41.407455 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec DVI4 6 ADPCM (IMA) 16000hz 50ms 1ch 64000bps
2022-09-08 11:18:41.407458 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec DVI4 6 ADPCM (IMA) 16000hz 60ms 1ch 64000bps
2022-09-08 11:18:41.407461 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 10ms 1ch 32000bps
2022-09-08 11:18:41.407465 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 20ms 1ch 32000bps
2022-09-08 11:18:41.407468 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 30ms 1ch 32000bps
2022-09-08 11:18:41.407471 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 40ms 1ch 32000bps
2022-09-08 11:18:41.407473 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 50ms 1ch 32000bps
2022-09-08 11:18:41.407487 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 60ms 1ch 32000bps
2022-09-08 11:18:41.407491 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 70ms 1ch 32000bps
2022-09-08 11:18:41.407494 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 80ms 1ch 32000bps
2022-09-08 11:18:41.407497 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 90ms 1ch 32000bps
2022-09-08 11:18:41.407499 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 100ms 1ch 32000bps
2022-09-08 11:18:41.407502 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 110ms 1ch 32000bps
2022-09-08 11:18:41.407505 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 120ms 1ch 32000bps
2022-09-08 11:18:41.407519 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 10ms 1ch 16000bps
2022-09-08 11:18:41.407528 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 20ms 1ch 16000bps
2022-09-08 11:18:41.407533 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 30ms 1ch 16000bps
2022-09-08 11:18:41.407536 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 40ms 1ch 16000bps
2022-09-08 11:18:41.407543 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 50ms 1ch 16000bps
2022-09-08 11:18:41.407546 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 60ms 1ch 16000bps
2022-09-08 11:18:41.407551 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 70ms 1ch 16000bps
2022-09-08 11:18:41.407555 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 80ms 1ch 16000bps
2022-09-08 11:18:41.407558 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 90ms 1ch 16000bps
2022-09-08 11:18:41.407562 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 100ms 1ch 16000bps
2022-09-08 11:18:41.407566 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 110ms 1ch 16000bps
2022-09-08 11:18:41.407570 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 120ms 1ch 16000bps
2022-09-08 11:18:41.407589 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-16 124 G.726 16k 8000hz 10ms 1ch 16000bps
2022-09-08 11:18:41.407598 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-16 124 G.726 16k 8000hz 20ms 1ch 16000bps
2022-09-08 11:18:41.407602 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-16 124 G.726 16k 8000hz 30ms 1ch 16000bps
2022-09-08 11:18:41.407605 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-16 124 G.726 16k 8000hz 40ms 1ch 16000bps
2022-09-08 11:18:41.407608 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-16 124 G.726 16k 8000hz 50ms 1ch 16000bps
2022-09-08 11:18:41.407613 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-16 124 G.726 16k 8000hz 60ms 1ch 16000bps
2022-09-08 11:18:41.407620 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-16 124 G.726 16k 8000hz 70ms 1ch 16000bps
2022-09-08 11:18:41.407623 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-16 124 G.726 16k 8000hz 80ms 1ch 16000bps
2022-09-08 11:18:41.407650 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-16 124 G.726 16k 8000hz 90ms 1ch 16000bps
2022-09-08 11:18:41.407654 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-16 124 G.726 16k 8000hz 100ms 1ch 16000bps
2022-09-08 11:18:41.407661 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-16 124 G.726 16k 8000hz 110ms 1ch 16000bps
2022-09-08 11:18:41.407668 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-16 124 G.726 16k 8000hz 120ms 1ch 16000bps
2022-09-08 11:18:41.407690 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 10ms 1ch 24000bps
2022-09-08 11:18:41.407697 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 20ms 1ch 24000bps
2022-09-08 11:18:41.407703 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 30ms 1ch 24000bps
2022-09-08 11:18:41.407709 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 40ms 1ch 24000bps
2022-09-08 11:18:41.407714 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 50ms 1ch 24000bps
2022-09-08 11:18:41.407718 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 60ms 1ch 24000bps
2022-09-08 11:18:41.407735 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 70ms 1ch 24000bps
2022-09-08 11:18:41.407740 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 80ms 1ch 24000bps
2022-09-08 11:18:41.407743 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 90ms 1ch 24000bps
2022-09-08 11:18:41.407745 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 100ms 1ch 24000bps
2022-09-08 11:18:41.407748 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 110ms 1ch 24000bps
2022-09-08 11:18:41.407752 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 120ms 1ch 24000bps
2022-09-08 11:18:41.407777 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-24 123 G.726 24k 8000hz 10ms 1ch 24000bps
2022-09-08 11:18:41.407783 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-24 123 G.726 24k 8000hz 20ms 1ch 24000bps
2022-09-08 11:18:41.407790 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-24 123 G.726 24k 8000hz 30ms 1ch 24000bps
2022-09-08 11:18:41.407794 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-24 123 G.726 24k 8000hz 40ms 1ch 24000bps
2022-09-08 11:18:41.407800 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-24 123 G.726 24k 8000hz 50ms 1ch 24000bps
2022-09-08 11:18:41.407804 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-24 123 G.726 24k 8000hz 60ms 1ch 24000bps
2022-09-08 11:18:41.407807 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-24 123 G.726 24k 8000hz 70ms 1ch 24000bps
2022-09-08 11:18:41.407811 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-24 123 G.726 24k 8000hz 80ms 1ch 24000bps
2022-09-08 11:18:41.407814 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-24 123 G.726 24k 8000hz 90ms 1ch 24000bps
2022-09-08 11:18:41.407817 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-24 123 G.726 24k 8000hz 100ms 1ch 24000bps
2022-09-08 11:18:41.407823 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-24 123 G.726 24k 8000hz 110ms 1ch 24000bps
2022-09-08 11:18:41.407827 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-24 123 G.726 24k 8000hz 120ms 1ch 24000bps
2022-09-08 11:18:41.407847 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 10ms 1ch 32000bps
2022-09-08 11:18:41.407852 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 20ms 1ch 32000bps
2022-09-08 11:18:41.407855 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 30ms 1ch 32000bps
2022-09-08 11:18:41.407859 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 40ms 1ch 32000bps
2022-09-08 11:18:41.407865 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 50ms 1ch 32000bps
2022-09-08 11:18:41.407871 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 60ms 1ch 32000bps
2022-09-08 11:18:41.407875 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 70ms 1ch 32000bps
2022-09-08 11:18:41.407880 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 80ms 1ch 32000bps
2022-09-08 11:18:41.407883 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 90ms 1ch 32000bps
2022-09-08 11:18:41.407888 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 100ms 1ch 32000bps
2022-09-08 11:18:41.407894 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 110ms 1ch 32000bps
2022-09-08 11:18:41.407898 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 120ms 1ch 32000bps
2022-09-08 11:18:41.407917 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-32 122 G.726 32k 8000hz 10ms 1ch 32000bps
2022-09-08 11:18:41.407922 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-32 122 G.726 32k 8000hz 20ms 1ch 32000bps
2022-09-08 11:18:41.407929 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-32 122 G.726 32k 8000hz 30ms 1ch 32000bps
2022-09-08 11:18:41.407933 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-32 122 G.726 32k 8000hz 40ms 1ch 32000bps
2022-09-08 11:18:41.407939 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-32 122 G.726 32k 8000hz 50ms 1ch 32000bps
2022-09-08 11:18:41.407943 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-32 122 G.726 32k 8000hz 60ms 1ch 32000bps
2022-09-08 11:18:41.407946 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-32 122 G.726 32k 8000hz 70ms 1ch 32000bps
2022-09-08 11:18:41.407950 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-32 122 G.726 32k 8000hz 80ms 1ch 32000bps
2022-09-08 11:18:41.407954 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-32 122 G.726 32k 8000hz 90ms 1ch 32000bps
2022-09-08 11:18:41.407959 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-32 122 G.726 32k 8000hz 100ms 1ch 32000bps
2022-09-08 11:18:41.407963 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-32 122 G.726 32k 8000hz 110ms 1ch 32000bps
2022-09-08 11:18:41.407967 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-32 122 G.726 32k 8000hz 120ms 1ch 32000bps
2022-09-08 11:18:41.407987 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 10ms 1ch 40000bps
2022-09-08 11:18:41.407997 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 20ms 1ch 40000bps
2022-09-08 11:18:41.408001 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 30ms 1ch 40000bps
2022-09-08 11:18:41.408008 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 40ms 1ch 40000bps
2022-09-08 11:18:41.408012 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 50ms 1ch 40000bps
2022-09-08 11:18:41.408015 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 60ms 1ch 40000bps
2022-09-08 11:18:41.408018 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 70ms 1ch 40000bps
2022-09-08 11:18:41.408021 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 80ms 1ch 40000bps
2022-09-08 11:18:41.408026 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 90ms 1ch 40000bps
2022-09-08 11:18:41.408032 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 100ms 1ch 40000bps
2022-09-08 11:18:41.408036 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 110ms 1ch 40000bps
2022-09-08 11:18:41.408039 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 120ms 1ch 40000bps
2022-09-08 11:18:41.408057 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-40 121 G.726 40k 8000hz 10ms 1ch 40000bps
2022-09-08 11:18:41.408065 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-40 121 G.726 40k 8000hz 20ms 1ch 40000bps
2022-09-08 11:18:41.408069 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-40 121 G.726 40k 8000hz 30ms 1ch 40000bps
2022-09-08 11:18:41.408071 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-40 121 G.726 40k 8000hz 40ms 1ch 40000bps
2022-09-08 11:18:41.408075 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-40 121 G.726 40k 8000hz 50ms 1ch 40000bps
2022-09-08 11:18:41.408078 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-40 121 G.726 40k 8000hz 60ms 1ch 40000bps
2022-09-08 11:18:41.408082 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-40 121 G.726 40k 8000hz 70ms 1ch 40000bps
2022-09-08 11:18:41.408086 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-40 121 G.726 40k 8000hz 80ms 1ch 40000bps
2022-09-08 11:18:41.408088 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-40 121 G.726 40k 8000hz 90ms 1ch 40000bps
2022-09-08 11:18:41.408091 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-40 121 G.726 40k 8000hz 100ms 1ch 40000bps
2022-09-08 11:18:41.408094 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-40 121 G.726 40k 8000hz 110ms 1ch 40000bps
2022-09-08 11:18:41.408097 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G726-40 121 G.726 40k 8000hz 120ms 1ch 40000bps
2022-09-08 11:18:41.408112 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G722 9 G.722 16000hz 10ms 1ch 64000bps
2022-09-08 11:18:41.408117 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G722 9 G.722 16000hz 20ms 1ch 64000bps
2022-09-08 11:18:41.408122 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G722 9 G.722 16000hz 30ms 1ch 64000bps
2022-09-08 11:18:41.408125 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G722 9 G.722 16000hz 40ms 1ch 64000bps
2022-09-08 11:18:41.408131 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G722 9 G.722 16000hz 50ms 1ch 64000bps
2022-09-08 11:18:41.408135 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G722 9 G.722 16000hz 60ms 1ch 64000bps
2022-09-08 11:18:41.408157 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec GSM 3 GSM 8000hz 20ms 1ch 13200bps
2022-09-08 11:18:41.408163 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec GSM 3 GSM 8000hz 40ms 1ch 13200bps
2022-09-08 11:18:41.408169 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec GSM 3 GSM 8000hz 60ms 1ch 13200bps
2022-09-08 11:18:41.408172 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec GSM 3 GSM 8000hz 80ms 1ch 13200bps
2022-09-08 11:18:41.408177 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec GSM 3 GSM 8000hz 100ms 1ch 13200bps
2022-09-08 11:18:41.408183 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec GSM 3 GSM 8000hz 120ms 1ch 13200bps
2022-09-08 11:18:41.408202 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec LPC 7 LPC-10 8000hz 90ms 1ch 2400bps
2022-09-08 11:18:41.408232 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 't38_gateway'
2022-09-08 11:18:41.408258 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'rxfax'
2022-09-08 11:18:41.408282 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'txfax'
2022-09-08 11:18:41.408307 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'stopfax'
2022-09-08 11:18:41.408334 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'spandsp_stop_dtmf'
2022-09-08 11:18:41.408361 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'spandsp_start_dtmf'
2022-09-08 11:18:41.408376 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'spandsp_stop_inject_tdd'
2022-09-08 11:18:41.408397 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'spandsp_inject_tdd'
2022-09-08 11:18:41.408416 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'spandsp_stop_detect_tdd'
2022-09-08 11:18:41.408442 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'spandsp_detect_tdd'
2022-09-08 11:18:41.408469 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'spandsp_send_tdd'
2022-09-08 11:18:41.408508 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'spandsp_start_fax_detect'
2022-09-08 11:18:41.408530 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'spandsp_stop_fax_detect'
2022-09-08 11:18:41.408549 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'spandsp_start_tone_detect'
2022-09-08 11:18:41.408572 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'spandsp_stop_tone_detect'
2022-09-08 11:18:41.408593 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'spandsp_start_tone_detect'
2022-09-08 11:18:41.408618 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'spandsp_stop_tone_detect'
2022-09-08 11:18:41.408649 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'start_tdd_detect'
2022-09-08 11:18:41.408668 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'stop_tdd_detect'
2022-09-08 11:18:41.408691 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'uuid_send_tdd'
2022-09-08 11:18:41.409798 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'expr'
2022-09-08 11:18:41.410780 0.00% [DEBUG] switch_scheduler.c:263 Added task 3 limit_hash_cleanup (mod_hash) to run at 1662629621
2022-09-08 11:18:41.412431 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'hash'
2022-09-08 11:18:41.412453 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'hash'
2022-09-08 11:18:41.412470 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'hash_dump'
2022-09-08 11:18:41.412505 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'hash_remote'
2022-09-08 11:18:41.412525 0.00% [NOTICE] switch_loadable_module.c:715 Adding Limit interface 'hash'
2022-09-08 11:18:41.415090 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'curl'
2022-09-08 11:18:41.415112 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'curl_sendfile'
2022-09-08 11:18:41.415148 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'curl'
2022-09-08 11:18:41.415165 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'curl_sendfile'
2022-09-08 11:18:41.416250 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'esf_page_group'
2022-09-08 11:18:41.418651 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'blacklist'
2022-09-08 11:18:41.422964 0.00% [INFO] switch_core_sqldb.c:1842 fifo Starting SQL thread.
2022-09-08 11:18:41.425016 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'fifo'
2022-09-08 11:18:41.425038 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'fifo_track_call'
2022-09-08 11:18:41.425055 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'fifo'
2022-09-08 11:18:41.425066 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'fifo_member'
2022-09-08 11:18:41.425082 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'fifo_add_outbound'
2022-09-08 11:18:41.425101 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'fifo_check_bridge'
2022-09-08 11:18:41.432984 0.00% [DEBUG] mod_callcenter.c:1624 Loading queue 650@test.fusionpbx.xxxxx.it
2022-09-08 11:18:41.433043 0.00% [INFO] mod_callcenter.c:781 Added queue 650@test.fusionpbx.xxxxx.it
2022-09-08 11:18:41.433050 0.00% [DEBUG] mod_callcenter.c:1624 Loading queue 650@test2.fusionpbx.xxxxx.it
2022-09-08 11:18:41.433076 0.00% [INFO] mod_callcenter.c:781 Added queue 650@test2.fusionpbx.xxxxx.it
2022-09-08 11:18:41.433385 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 7b64a588-137a-4db5-9989-1c38738396dc set contact = {call_timeout=30,domain_name=test.fusionpbx.xxxxx.it,domain_uuid=48ca0b86-5eea-4b2f-bd8f-9fdd97963b0b,extension_uuid=b3554470-0a69-4633-b738-194eefc48f40,sip_h_caller_destination=${caller_destination}}user/105@test.fusionpbx.xxxxx.it
2022-09-08 11:18:41.433559 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 7b64a588-137a-4db5-9989-1c38738396dc set status = Available
2022-09-08 11:18:41.433795 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 7b64a588-137a-4db5-9989-1c38738396dc set wrap_up_time = 1
2022-09-08 11:18:41.434021 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 7b64a588-137a-4db5-9989-1c38738396dc set max_no_answer = 0
2022-09-08 11:18:41.434241 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 7b64a588-137a-4db5-9989-1c38738396dc set reject_delay_time = 1
2022-09-08 11:18:41.434458 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 7b64a588-137a-4db5-9989-1c38738396dc set busy_delay_time = 20
2022-09-08 11:18:41.434723 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 7b64a588-137a-4db5-9989-1c38738396dc set no_answer_delay_time = 20
2022-09-08 11:18:41.434957 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 7b64a588-137a-4db5-9989-1c38738396dc set type = callback
2022-09-08 11:18:41.435247 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent aae1548f-1283-4ad6-9975-a5b68c83363c set contact = {call_timeout=30,domain_name=test.fusionpbx.xxxxx.it,domain_uuid=48ca0b86-5eea-4b2f-bd8f-9fdd97963b0b,extension_uuid=bc834a0a-1646-42d6-82f7-6636e0b9c30e,sip_h_caller_destination=${caller_destination}}user/104@test.fusionpbx.xxxxx.it
2022-09-08 11:18:41.435430 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent aae1548f-1283-4ad6-9975-a5b68c83363c set status = Available
2022-09-08 11:18:41.435716 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent aae1548f-1283-4ad6-9975-a5b68c83363c set wrap_up_time = 1
2022-09-08 11:18:41.435972 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent aae1548f-1283-4ad6-9975-a5b68c83363c set max_no_answer = 0
2022-09-08 11:18:41.436243 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent aae1548f-1283-4ad6-9975-a5b68c83363c set reject_delay_time = 1
2022-09-08 11:18:41.436522 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent aae1548f-1283-4ad6-9975-a5b68c83363c set busy_delay_time = 20
2022-09-08 11:18:41.436797 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent aae1548f-1283-4ad6-9975-a5b68c83363c set no_answer_delay_time = 20
2022-09-08 11:18:41.437012 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent aae1548f-1283-4ad6-9975-a5b68c83363c set type = callback
2022-09-08 11:18:41.437297 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 932379e9-1859-43f3-ad50-19178aaca553 set contact = {call_timeout=30,domain_name=test.fusionpbx.xxxxx.it,domain_uuid=48ca0b86-5eea-4b2f-bd8f-9fdd97963b0b,extension_uuid=b1257b37-2bd9-40ca-8e0a-903da1108b7a,sip_h_caller_destination=${caller_destination}}user/101@test.fusionpbx.xxxxx.it
2022-09-08 11:18:41.437444 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 932379e9-1859-43f3-ad50-19178aaca553 set status = Available
2022-09-08 11:18:41.437683 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 932379e9-1859-43f3-ad50-19178aaca553 set wrap_up_time = 1
2022-09-08 11:18:41.437926 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 932379e9-1859-43f3-ad50-19178aaca553 set max_no_answer = 0
2022-09-08 11:18:41.438164 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 932379e9-1859-43f3-ad50-19178aaca553 set reject_delay_time = 1
2022-09-08 11:18:41.438406 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 932379e9-1859-43f3-ad50-19178aaca553 set busy_delay_time = 20
2022-09-08 11:18:41.438675 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 932379e9-1859-43f3-ad50-19178aaca553 set no_answer_delay_time = 20
2022-09-08 11:18:41.438960 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 932379e9-1859-43f3-ad50-19178aaca553 set type = callback
2022-09-08 11:18:41.439360 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent f2e63ee0-1769-420d-a448-5ab919c085c1 set contact = {call_timeout=30,domain_name=test.fusionpbx.xxxxx.it,domain_uuid=48ca0b86-5eea-4b2f-bd8f-9fdd97963b0b,extension_uuid=60da79a0-a91c-4aa6-ab9a-6ee22d3f17f9,sip_h_caller_destination=${caller_destination}}user/100@test.fusionpbx.xxxxx.it
2022-09-08 11:18:41.439544 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent f2e63ee0-1769-420d-a448-5ab919c085c1 set status = Available
2022-09-08 11:18:41.439859 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent f2e63ee0-1769-420d-a448-5ab919c085c1 set wrap_up_time = 1
2022-09-08 11:18:41.440113 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent f2e63ee0-1769-420d-a448-5ab919c085c1 set max_no_answer = 0
2022-09-08 11:18:41.440361 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent f2e63ee0-1769-420d-a448-5ab919c085c1 set reject_delay_time = 1
2022-09-08 11:18:41.440647 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent f2e63ee0-1769-420d-a448-5ab919c085c1 set busy_delay_time = 20
2022-09-08 11:18:41.440890 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent f2e63ee0-1769-420d-a448-5ab919c085c1 set no_answer_delay_time = 20
2022-09-08 11:18:41.441129 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent f2e63ee0-1769-420d-a448-5ab919c085c1 set type = callback
2022-09-08 11:18:41.441450 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 86081f86-e029-4539-a07b-dad3e73b111f set contact = {call_timeout=30,domain_name=test2.fusionpbx.xxxxx.it,domain_uuid=1cbb20e4-ca99-483d-9d36-414266d856b7,extension_uuid=97d35e0c-d4da-4295-b317-a92e6d2142ab,sip_h_caller_destination=${caller_destination}}user/101@test2.fusionpbx.xxxxx.it
2022-09-08 11:18:41.441679 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 86081f86-e029-4539-a07b-dad3e73b111f set status = Available
2022-09-08 11:18:41.441928 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 86081f86-e029-4539-a07b-dad3e73b111f set wrap_up_time = 1
2022-09-08 11:18:41.442164 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 86081f86-e029-4539-a07b-dad3e73b111f set max_no_answer = 0
2022-09-08 11:18:41.442460 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 86081f86-e029-4539-a07b-dad3e73b111f set reject_delay_time = 1
2022-09-08 11:18:41.442754 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 86081f86-e029-4539-a07b-dad3e73b111f set busy_delay_time = 20
2022-09-08 11:18:41.443053 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 86081f86-e029-4539-a07b-dad3e73b111f set no_answer_delay_time = 20
2022-09-08 11:18:41.443273 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent 86081f86-e029-4539-a07b-dad3e73b111f set type = callback
2022-09-08 11:18:41.443611 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent fc878f0b-5f72-4f9c-97de-4b589fc73091 set contact = {call_timeout=30,domain_name=test2.fusionpbx.xxxxx.it,domain_uuid=1cbb20e4-ca99-483d-9d36-414266d856b7,extension_uuid=723b4ee5-8d5c-4d94-8b06-3b15475a86f1,sip_h_caller_destination=${caller_destination}}user/100@test2.fusionpbx.xxxxx.it
2022-09-08 11:18:41.443776 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent fc878f0b-5f72-4f9c-97de-4b589fc73091 set status = Available
2022-09-08 11:18:41.443986 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent fc878f0b-5f72-4f9c-97de-4b589fc73091 set wrap_up_time = 1
2022-09-08 11:18:41.444205 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent fc878f0b-5f72-4f9c-97de-4b589fc73091 set max_no_answer = 0
2022-09-08 11:18:41.444419 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent fc878f0b-5f72-4f9c-97de-4b589fc73091 set reject_delay_time = 1
2022-09-08 11:18:41.444667 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent fc878f0b-5f72-4f9c-97de-4b589fc73091 set busy_delay_time = 20
2022-09-08 11:18:41.444882 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent fc878f0b-5f72-4f9c-97de-4b589fc73091 set no_answer_delay_time = 20
2022-09-08 11:18:41.445098 0.00% [DEBUG] mod_callcenter.c:1180 Updated Agent fc878f0b-5f72-4f9c-97de-4b589fc73091 set type = callback
2022-09-08 11:18:41.445446 0.00% [DEBUG] mod_callcenter.c:1301 Updated tier: Agent 86081f86-e029-4539-a07b-dad3e73b111f in Queue 650@test2.fusionpbx.xxxxx.it set level = 0
2022-09-08 11:18:41.445841 0.00% [DEBUG] mod_callcenter.c:1301 Updated tier: Agent 86081f86-e029-4539-a07b-dad3e73b111f in Queue 650@test2.fusionpbx.xxxxx.it set position = 0
2022-09-08 11:18:41.446179 0.00% [DEBUG] mod_callcenter.c:1301 Updated tier: Agent fc878f0b-5f72-4f9c-97de-4b589fc73091 in Queue 650@test2.fusionpbx.xxxxx.it set level = 0
2022-09-08 11:18:41.446433 0.00% [DEBUG] mod_callcenter.c:1301 Updated tier: Agent fc878f0b-5f72-4f9c-97de-4b589fc73091 in Queue 650@test2.fusionpbx.xxxxx.it set position = 0
2022-09-08 11:18:41.446824 0.00% [DEBUG] mod_callcenter.c:1301 Updated tier: Agent 7b64a588-137a-4db5-9989-1c38738396dc in Queue 650@test.fusionpbx.xxxxx.it set level = 0
2022-09-08 11:18:41.447120 0.00% [DEBUG] mod_callcenter.c:1301 Updated tier: Agent 7b64a588-137a-4db5-9989-1c38738396dc in Queue 650@test.fusionpbx.xxxxx.it set position = 0
2022-09-08 11:18:41.447553 0.00% [DEBUG] mod_callcenter.c:1301 Updated tier: Agent aae1548f-1283-4ad6-9975-a5b68c83363c in Queue 650@test.fusionpbx.xxxxx.it set level = 0
2022-09-08 11:18:41.447827 0.00% [DEBUG] mod_callcenter.c:1301 Updated tier: Agent aae1548f-1283-4ad6-9975-a5b68c83363c in Queue 650@test.fusionpbx.xxxxx.it set position = 0
2022-09-08 11:18:41.448162 0.00% [DEBUG] mod_callcenter.c:1301 Updated tier: Agent 932379e9-1859-43f3-ad50-19178aaca553 in Queue 650@test.fusionpbx.xxxxx.it set level = 0
2022-09-08 11:18:41.448416 0.00% [DEBUG] mod_callcenter.c:1301 Updated tier: Agent 932379e9-1859-43f3-ad50-19178aaca553 in Queue 650@test.fusionpbx.xxxxx.it set position = 0
2022-09-08 11:18:41.448817 0.00% [DEBUG] mod_callcenter.c:1301 Updated tier: Agent f2e63ee0-1769-420d-a448-5ab919c085c1 in Queue 650@test.fusionpbx.xxxxx.it set level = 0
2022-09-08 11:18:41.449072 0.00% [DEBUG] mod_callcenter.c:1301 Updated tier: Agent f2e63ee0-1769-420d-a448-5ab919c085c1 in Queue 650@test.fusionpbx.xxxxx.it set position = 0
2022-09-08 11:18:41.449324 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'callcenter'
2022-09-08 11:18:41.449348 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'callcenter_track'
2022-09-08 11:18:41.449364 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'callcenter_config'
2022-09-08 11:18:41.449386 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'callcenter_break'
2022-09-08 11:18:41.449403 0.00% [NOTICE] switch_loadable_module.c:419 Adding JSON API Function 'callcenter_config'
2022-09-08 11:18:41.450646 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'valet_park'
2022-09-08 11:18:41.450673 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'valet_info'
2022-09-08 11:18:41.467268 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'conference'
2022-09-08 11:18:41.467292 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'conference_set_auto_outcall'
2022-09-08 11:18:41.467315 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'conference'
2022-09-08 11:18:41.467331 0.00% [NOTICE] switch_loadable_module.c:621 Adding Chat interface 'conf'
2022-09-08 11:18:41.470339 0.00% [ERR] mod_avmd.c:966 AVMD config parameter 'debug' missing or invalid - using default
2022-09-08 11:18:41.470363 0.00% [ERR] mod_avmd.c:972 AVMD config parameter 'report_status' missing or invalid - using default
2022-09-08 11:18:41.470367 0.00% [ERR] mod_avmd.c:978 AVMD config parameter 'fast_math' missing or invalid - using default
2022-09-08 11:18:41.470370 0.00% [ERR] mod_avmd.c:984 AVMD config parameter 'require_continuous_streak' missing or invalid - using default
2022-09-08 11:18:41.470372 0.00% [ERR] mod_avmd.c:990 AVMD config parameter 'sample_n_continuous_streak' missing or invalid - using default
2022-09-08 11:18:41.470374 0.00% [ERR] mod_avmd.c:996 AVMD config parameter 'sample_n_to_skip' missing or invalid - using default
2022-09-08 11:18:41.470376 0.00% [ERR] mod_avmd.c:1002 AVMD config parameter 'require_continuous_streak_amp' missing or invalid - using default
2022-09-08 11:18:41.470378 0.00% [ERR] mod_avmd.c:1008 AVMD config parameter 'sample_n_continuous_streak_amp' missing or invalid - using default
2022-09-08 11:18:41.470380 0.00% [ERR] mod_avmd.c:1014 AVMD config parameter 'simplified_estimation' missing or invalid - using default
2022-09-08 11:18:41.470382 0.00% [ERR] mod_avmd.c:1020 AVMD config parameter 'inbound_channel' missing or invalid - using default
2022-09-08 11:18:41.470384 0.00% [ERR] mod_avmd.c:1026 AVMD config parameter 'outbound_channel' missing or invalid - using default
2022-09-08 11:18:41.470386 0.00% [ERR] mod_avmd.c:1032 AVMD config parameter 'detection_mode' missing or invalid - using default
2022-09-08 11:18:41.470388 0.00% [ERR] mod_avmd.c:1038 AVMD config parameter 'detectors_n' missing or invalid - using default
2022-09-08 11:18:41.470390 0.00% [ERR] mod_avmd.c:1044 AVMD config parameter 'detectors_lagged_n' missing or invalid - using default
2022-09-08 11:18:41.470392 0.00% [INFO] mod_avmd.c:1052 Type 'avmd show' to display default settings. Type 'avmd ' + TAB for autocompletion.
2022-09-08 11:18:41.470476 0.00% [NOTICE] mod_avmd.c:1212 Advanced voicemail detection enabled
2022-09-08 11:18:41.470510 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'avmd_start'
2022-09-08 11:18:41.470533 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'avmd_stop'
2022-09-08 11:18:41.470551 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'avmd'
2022-09-08 11:18:41.470568 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'avmd'
2022-09-08 11:18:41.471601 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'play_fsv'
2022-09-08 11:18:41.471624 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'record_fsv'
2022-09-08 11:18:41.471657 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'play_yuv'
2022-09-08 11:18:41.471671 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'decode_video'
2022-09-08 11:18:41.471690 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'fsv'
2022-09-08 11:18:41.472537 0.00% [NOTICE] switch_loadable_module.c:359 Adding Chat Application 'info'
2022-09-08 11:18:41.472563 0.00% [NOTICE] switch_loadable_module.c:359 Adding Chat Application 'reply'
2022-09-08 11:18:41.472584 0.00% [NOTICE] switch_loadable_module.c:359 Adding Chat Application 'stop'
2022-09-08 11:18:41.472598 0.00% [NOTICE] switch_loadable_module.c:359 Adding Chat Application 'final'
2022-09-08 11:18:41.472622 0.00% [NOTICE] switch_loadable_module.c:359 Adding Chat Application 'set'
2022-09-08 11:18:41.472658 0.00% [NOTICE] switch_loadable_module.c:359 Adding Chat Application 'unset'
2022-09-08 11:18:41.472674 0.00% [NOTICE] switch_loadable_module.c:359 Adding Chat Application 'send'
2022-09-08 11:18:41.472693 0.00% [NOTICE] switch_loadable_module.c:359 Adding Chat Application 'fire'
2022-09-08 11:18:41.472707 0.00% [NOTICE] switch_loadable_module.c:359 Adding Chat Application 'system'
2022-09-08 11:18:41.472734 0.00% [NOTICE] switch_loadable_module.c:621 Adding Chat interface 'GLOBAL_SMS'
2022-09-08 11:18:41.475520 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'db'
2022-09-08 11:18:41.475539 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'group'
2022-09-08 11:18:41.475556 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'db'
2022-09-08 11:18:41.475576 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'group'
2022-09-08 11:18:41.475598 0.00% [NOTICE] switch_loadable_module.c:715 Adding Limit interface 'db'
2022-09-08 11:18:41.479028 0.00% [NOTICE] switch_loadable_module.c:273 Adding Dialplan 'enum'
2022-09-08 11:18:41.479050 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'enum'
2022-09-08 11:18:41.479067 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'enum'
2022-09-08 11:18:41.479084 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'enum_auto'
2022-09-08 11:18:41.480191 0.00% [INFO] mod_siren.c:155 Audio coding: ITU-T Rec. G.722.1, licensed from Polycom(R)
2022-09-08 11:18:41.480206 0.00% [INFO] mod_siren.c:156 Audio coding: ITU-T Rec. G.722.1 Annex C, licensed from Polycom(R)
2022-09-08 11:18:41.480230 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G7221 115 Polycom(R) G722.1/G722.1C 32000hz 20ms 1ch 48000bps
2022-09-08 11:18:41.480237 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G7221 115 Polycom(R) G722.1/G722.1C 32000hz 40ms 1ch 48000bps
2022-09-08 11:18:41.480240 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G7221 115 Polycom(R) G722.1/G722.1C 32000hz 60ms 1ch 48000bps
2022-09-08 11:18:41.480243 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G7221 107 Polycom(R) G722.1/G722.1C 16000hz 20ms 1ch 32000bps
2022-09-08 11:18:41.480246 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G7221 107 Polycom(R) G722.1/G722.1C 16000hz 40ms 1ch 32000bps
2022-09-08 11:18:41.480249 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G7221 107 Polycom(R) G722.1/G722.1C 16000hz 60ms 1ch 32000bps
2022-09-08 11:18:41.480251 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G7221 107 Polycom(R) G722.1/G722.1C 16000hz 20ms 1ch 24000bps
2022-09-08 11:18:41.480256 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G7221 107 Polycom(R) G722.1/G722.1C 16000hz 40ms 1ch 24000bps
2022-09-08 11:18:41.480261 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G7221 107 Polycom(R) G722.1/G722.1C 16000hz 60ms 1ch 24000bps
2022-09-08 11:18:41.481159 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G723 4 G.723.1 6.3k 8000hz 120ms 1ch 6300bps
2022-09-08 11:18:41.481165 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G723 4 G.723.1 6.3k 8000hz 90ms 1ch 6300bps
2022-09-08 11:18:41.481168 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G723 4 G.723.1 6.3k 8000hz 60ms 1ch 6300bps
2022-09-08 11:18:41.481171 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G723 4 G.723.1 6.3k 8000hz 30ms 1ch 6300bps
2022-09-08 11:18:41.481956 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AMR 96 AMR / Octet Aligned 8000hz 20ms 1ch 12200bps
2022-09-08 11:18:41.481978 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec AMR 97 AMR / Bandwidth Efficient 8000hz 20ms 1ch 12200bps
2022-09-08 11:18:41.483064 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec BV16 106 BroadVoice16 (BV16) 8000hz 10ms 1ch 16000bps
2022-09-08 11:18:41.483069 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec BV16 106 BroadVoice16 (BV16) 8000hz 20ms 1ch 16000bps
2022-09-08 11:18:41.483073 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec BV16 106 BroadVoice16 (BV16) 8000hz 30ms 1ch 16000bps
2022-09-08 11:18:41.483076 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec BV16 106 BroadVoice16 (BV16) 8000hz 40ms 1ch 16000bps
2022-09-08 11:18:41.483079 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec BV16 106 BroadVoice16 (BV16) 8000hz 50ms 1ch 16000bps
2022-09-08 11:18:41.483082 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec BV16 106 BroadVoice16 (BV16) 8000hz 60ms 1ch 16000bps
2022-09-08 11:18:41.483085 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec BV16 106 BroadVoice16 (BV16) 8000hz 70ms 1ch 16000bps
2022-09-08 11:18:41.483088 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec BV16 106 BroadVoice16 (BV16) 8000hz 80ms 1ch 16000bps
2022-09-08 11:18:41.483090 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec BV16 106 BroadVoice16 (BV16) 8000hz 90ms 1ch 16000bps
2022-09-08 11:18:41.483093 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec BV16 106 BroadVoice16 (BV16) 8000hz 100ms 1ch 16000bps
2022-09-08 11:18:41.483096 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec BV16 106 BroadVoice16 (BV16) 8000hz 110ms 1ch 16000bps
2022-09-08 11:18:41.483099 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec BV16 106 BroadVoice16 (BV16) 8000hz 120ms 1ch 16000bps
2022-09-08 11:18:41.483116 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec BV32 127 BroadVoice32 (BV32) 16000hz 10ms 1ch 32000bps
2022-09-08 11:18:41.483121 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec BV32 127 BroadVoice32 (BV32) 16000hz 20ms 1ch 32000bps
2022-09-08 11:18:41.483124 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec BV32 127 BroadVoice32 (BV32) 16000hz 30ms 1ch 32000bps
2022-09-08 11:18:41.483127 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec BV32 127 BroadVoice32 (BV32) 16000hz 40ms 1ch 32000bps
2022-09-08 11:18:41.483130 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec BV32 127 BroadVoice32 (BV32) 16000hz 50ms 1ch 32000bps
2022-09-08 11:18:41.483135 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec BV32 127 BroadVoice32 (BV32) 16000hz 60ms 1ch 32000bps
2022-09-08 11:18:41.483852 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G729 18 G.729 8000hz 10ms 1ch 8000bps
2022-09-08 11:18:41.483857 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G729 18 G.729 8000hz 20ms 1ch 8000bps
2022-09-08 11:18:41.483860 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G729 18 G.729 8000hz 30ms 1ch 8000bps
2022-09-08 11:18:41.483864 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G729 18 G.729 8000hz 40ms 1ch 8000bps
2022-09-08 11:18:41.483867 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G729 18 G.729 8000hz 50ms 1ch 8000bps
2022-09-08 11:18:41.483870 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G729 18 G.729 8000hz 60ms 1ch 8000bps
2022-09-08 11:18:41.483873 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G729 18 G.729 8000hz 70ms 1ch 8000bps
2022-09-08 11:18:41.483878 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G729 18 G.729 8000hz 80ms 1ch 8000bps
2022-09-08 11:18:41.483884 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G729 18 G.729 8000hz 90ms 1ch 8000bps
2022-09-08 11:18:41.483888 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G729 18 G.729 8000hz 100ms 1ch 8000bps
2022-09-08 11:18:41.483892 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G729 18 G.729 8000hz 110ms 1ch 8000bps
2022-09-08 11:18:41.483899 0.00% [NOTICE] switch_loadable_module.c:223 Adding Codec G729 18 G.729 8000hz 120ms 1ch 8000bps
2022-09-08 11:18:41.484840 0.00% [NOTICE] switch_loadable_module.c:229 Adding Codec H264 97 H.264 Video (passthru) 90000hz 0ms 1ch (VBR)
2022-09-08 11:18:41.484867 0.00% [NOTICE] switch_loadable_module.c:229 Adding Codec H263 34 H.263 Video (passthru) 90000hz 0ms 1ch (VBR)
2022-09-08 11:18:41.484889 0.00% [NOTICE] switch_loadable_module.c:229 Adding Codec H263-1998 115 H.263+ Video (passthru) 90000hz 0ms 1ch (VBR)
2022-09-08 11:18:41.484911 0.00% [NOTICE] switch_loadable_module.c:229 Adding Codec H263-2000 121 H.263++ Video (passthru) 90000hz 0ms 1ch (VBR)
2022-09-08 11:18:41.484937 0.00% [NOTICE] switch_loadable_module.c:229 Adding Codec H261 31 H.261 Video (passthru) 90000hz 0ms 1ch (VBR)
2022-09-08 11:18:41.486000 0.00% [CRIT] switch_loadable_module.c:1750 Error Loading module /usr/lib64/freeswitch/mod/mod_ilbc.so
**libilbc.so.0: cannot open shared object file: No such file or directory**
2022-09-08 11:18:41.486837 0.00% [NOTICE] switch_loadable_module.c:273 Adding Dialplan 'XML'
2022-09-08 11:18:41.489379 0.00% [NOTICE] switch_loadable_module.c:172 Adding Endpoint 'loopback'
2022-09-08 11:18:41.489402 0.00% [NOTICE] switch_loadable_module.c:172 Adding Endpoint 'null'
2022-09-08 11:18:41.489423 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'unloop'
2022-09-08 11:18:41.490528 0.00% [NOTICE] switch_loadable_module.c:329 Adding Application 'socket'
2022-09-08 11:18:41.490550 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'event_sink'
2022-09-08 11:18:41.491443 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'AAL2-G726-32'
2022-09-08 11:18:41.491461 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'DVI4'
2022-09-08 11:18:41.491489 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'PCMU'
2022-09-08 11:18:41.491509 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'G722'
2022-09-08 11:18:41.491552 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'AAL2-G726-24'
2022-09-08 11:18:41.491572 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'AAL2-G726-40'
2022-09-08 11:18:41.491593 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'L16'
2022-09-08 11:18:41.491611 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'BV32'
2022-09-08 11:18:41.491647 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'G726-16'
2022-09-08 11:18:41.491673 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'PCMA'
2022-09-08 11:18:41.491698 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'G726-24'
2022-09-08 11:18:41.491719 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'G729'
2022-09-08 11:18:41.491744 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'AAL2-G726-16'
2022-09-08 11:18:41.491762 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'G726-32'
2022-09-08 11:18:41.491784 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'GSM'
2022-09-08 11:18:41.491803 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'G726-40'
2022-09-08 11:18:41.491827 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'BV16'
2022-09-08 11:18:41.491846 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'G723'
2022-09-08 11:18:41.491868 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'LPC'
2022-09-08 11:18:41.496058 0.00% [INFO] mod_sndfile.c:498
LibSndFile Version : libsndfile-1.0.25 Supported Formats
================================================================================
AIFF (Apple/SGI) (extension "aiff")
AU (Sun/NeXT) (extension "au")
AVR (Audio Visual Research) (extension "avr")
CAF (Apple Core Audio File) (extension "caf")
FLAC (FLAC Lossless Audio Codec) (extension "flac")
HTK (HMM Tool Kit) (extension "htk")
IFF (Amiga IFF/SVX8/SV16) (extension "iff")
MAT4 (GNU Octave 2.0 / Matlab 4.2) (extension "mat")
MAT5 (GNU Octave 2.1 / Matlab 5.0) (extension "mat")
MPC (Akai MPC 2k) (extension "mpc")
OGG (OGG Container format) (extension "oga")
OGG (OGG Container format) (extension "ogg")
PAF (Ensoniq PARIS) (extension "paf")
PVF (Portable Voice Format) (extension "pvf")
RAW (header-less) (extension "raw")
RF64 (RIFF 64) (extension "rf64")
SD2 (Sound Designer II) (extension "sd2")
SDS (Midi Sample Dump Standard) (extension "sds")
SF (Berkeley/IRCAM/CARL) (extension "sf")
VOC (Creative Labs) (extension "voc")
W64 (SoundFoundry WAVE 64) (extension "w64")
WAV (Microsoft) (extension "wav")
WAV (NIST Sphere) (extension "wav")
WAVEX (Microsoft) (extension "wav")
WVE (Psion Series 3) (extension "wve")
XI (FastTracker 2) (extension "xi")
================================================================================
2022-09-08 11:18:41.496227 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'sndfile_debug'
2022-09-08 11:18:41.496262 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'aiff'
2022-09-08 11:18:41.496286 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'au'
2022-09-08 11:18:41.496307 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'avr'
2022-09-08 11:18:41.496327 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'caf'
2022-09-08 11:18:41.496349 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'flac'
2022-09-08 11:18:41.496367 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'htk'
2022-09-08 11:18:41.496393 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'iff'
2022-09-08 11:18:41.496417 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'mat'
2022-09-08 11:18:41.496435 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'mpc'
2022-09-08 11:18:41.496455 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'oga'
2022-09-08 11:18:41.496493 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'paf'
2022-09-08 11:18:41.496518 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'pvf'
2022-09-08 11:18:41.496536 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'raw'
2022-09-08 11:18:41.496577 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'rf64'
2022-09-08 11:18:41.496595 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'sd2'
2022-09-08 11:18:41.496622 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'sds'
2022-09-08 11:18:41.496659 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'sf'
2022-09-08 11:18:41.496685 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'voc'
2022-09-08 11:18:41.496711 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'w64'
2022-09-08 11:18:41.496735 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'wav'
2022-09-08 11:18:41.496753 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'wve'
2022-09-08 11:18:41.496780 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'xi'
2022-09-08 11:18:41.496807 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'r8'
2022-09-08 11:18:41.496833 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'r16'
2022-09-08 11:18:41.496860 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'r24'
2022-09-08 11:18:41.496878 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'r32'
2022-09-08 11:18:41.496903 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'gsm'
2022-09-08 11:18:41.496921 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'ul'
2022-09-08 11:18:41.496954 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'ulaw'
2022-09-08 11:18:41.496974 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'al'
2022-09-08 11:18:41.497001 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'alaw'
2022-09-08 11:18:41.497028 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'adpcm'
2022-09-08 11:18:41.497044 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'vox'
2022-09-08 11:18:41.497067 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'oga'
2022-09-08 11:18:41.497086 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'ogg'
2022-09-08 11:18:41.497975 0.00% [NOTICE] switch_loadable_module.c:649 Adding Say interface 'he'
2022-09-08 11:18:41.498882 0.00% [NOTICE] switch_loadable_module.c:649 Adding Say interface 'pt'
2022-09-08 11:18:41.499775 0.00% [NOTICE] switch_loadable_module.c:649 Adding Say interface 'es'
2022-09-08 11:18:41.500634 0.00% [NOTICE] switch_loadable_module.c:649 Adding Say interface 'en'
2022-09-08 11:18:41.501744 0.00% [NOTICE] switch_loadable_module.c:649 Adding Say interface 'it'
2022-09-08 11:18:41.502612 0.00% [NOTICE] switch_loadable_module.c:649 Adding Say interface 'fr'
2022-09-08 11:18:41.503524 0.00% [NOTICE] switch_loadable_module.c:649 Adding Say interface 'ru'
2022-09-08 11:18:41.504360 0.00% [NOTICE] switch_loadable_module.c:649 Adding Say interface 'de'
2022-09-08 11:18:41.509872 0.00% [NOTICE] switch_loadable_module.c:389 Adding API Function 'local_stream'
2022-09-08 11:18:41.509897 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'local_stream'
2022-09-08 11:18:41.511129 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'tone_stream'
2022-09-08 11:18:41.511159 0.00% [NOTICE] switch_loadable_module.c:455 Adding File Format 'silence_stream'
2022-09-08 11:18:41.513942 0.00% [NOTICE] mod_xml_cdr.c:102 Rotating log file paths
2022-09-08 11:18:41.513959 0.00% [NOTICE] mod_xml_cdr.c:129 Setting log file path to /var/log/freeswitch/xml_cdr
2022-09-08 11:18:41.513969 0.00% [NOTICE] mod_xml_cdr.c:168 Setting err log file path to /var/log/freeswitch/xml_cdr
2022-09-08 11:18:41.515598 100.00% [INFO] switch_time.c:626 Clock synchronized to system time.
2022-09-08 11:18:41.515589 100.00% [DEBUG] switch_loadable_module.c:908 Chat Thread Started
2022-09-08 11:18:41.515719 100.00% [DEBUG] switch_loadable_module.c:908 Chat Thread Started
2022-09-08 11:18:41.515826 100.00% [NOTICE] switch_core.c:1481 Created ip list rfc6598.auto default (deny)
2022-09-08 11:18:41.515841 100.00% [NOTICE] switch_utils.c:667 Adding 100.64.0.0/10 (allow) [] to list rfc6598.auto
2022-09-08 11:18:41.515857 100.00% [NOTICE] switch_core.c:1487 Created ip list rfc1918.auto default (deny)
2022-09-08 11:18:41.515861 100.00% [NOTICE] switch_utils.c:667 Adding 10.0.0.0/8 (allow) [] to list rfc1918.auto
2022-09-08 11:18:41.515864 100.00% [NOTICE] switch_utils.c:667 Adding 172.16.0.0/12 (allow) [] to list rfc1918.auto
2022-09-08 11:18:41.515868 100.00% [NOTICE] switch_utils.c:667 Adding 192.168.0.0/16 (allow) [] to list rfc1918.auto
2022-09-08 11:18:41.515871 100.00% [NOTICE] switch_utils.c:667 Adding fe80::/10 (allow) [] to list rfc1918.auto
2022-09-08 11:18:41.515877 100.00% [NOTICE] switch_core.c:1496 Created ip list wan.auto default (allow)
2022-09-08 11:18:41.515887 100.00% [NOTICE] switch_utils.c:667 Adding 0.0.0.0/8 (deny) [] to list wan.auto
2022-09-08 11:18:41.515891 100.00% [NOTICE] switch_utils.c:667 Adding 10.0.0.0/8 (deny) [] to list wan.auto
2022-09-08 11:18:41.515894 100.00% [NOTICE] switch_utils.c:667 Adding 172.16.0.0/12 (deny) [] to list wan.auto
2022-09-08 11:18:41.515898 100.00% [NOTICE] switch_utils.c:667 Adding 192.168.0.0/16 (deny) [] to list wan.auto
2022-09-08 11:18:41.515901 100.00% [NOTICE] switch_utils.c:667 Adding 169.254.0.0/16 (deny) [] to list wan.auto
2022-09-08 11:18:41.515904 100.00% [NOTICE] switch_utils.c:667 Adding 100.64.0.0/10 (deny) [] to list wan.auto
2022-09-08 11:18:41.515909 100.00% [NOTICE] switch_utils.c:667 Adding fe80::/10 (deny) [] to list wan.auto
2022-09-08 11:18:41.515912 100.00% [NOTICE] switch_core.c:1508 Created ip list wan_v6.auto default (allow)
2022-09-08 11:18:41.515915 100.00% [NOTICE] switch_utils.c:667 Adding 0.0.0.0/0 (deny) [] to list wan_v6.auto
2022-09-08 11:18:41.515920 100.00% [NOTICE] switch_utils.c:667 Adding fe80::/10 (deny) [] to list wan_v6.auto
2022-09-08 11:18:41.515923 100.00% [NOTICE] switch_core.c:1516 Created ip list wan_v4.auto default (allow)
2022-09-08 11:18:41.515926 100.00% [NOTICE] switch_utils.c:667 Adding 0.0.0.0/8 (deny) [] to list wan_v4.auto
2022-09-08 11:18:41.515929 100.00% [NOTICE] switch_utils.c:667 Adding 10.0.0.0/8 (deny) [] to list wan_v4.auto
2022-09-08 11:18:41.515932 100.00% [NOTICE] switch_utils.c:667 Adding 172.16.0.0/12 (deny) [] to list wan_v4.auto
2022-09-08 11:18:41.515935 100.00% [NOTICE] switch_utils.c:667 Adding 192.168.0.0/16 (deny) [] to list wan_v4.auto
2022-09-08 11:18:41.515940 100.00% [NOTICE] switch_utils.c:667 Adding 169.254.0.0/16 (deny) [] to list wan_v4.auto
2022-09-08 11:18:41.515943 100.00% [NOTICE] switch_utils.c:667 Adding 100.64.0.0/10 (deny) [] to list wan_v4.auto
2022-09-08 11:18:41.515946 100.00% [NOTICE] switch_utils.c:667 Adding ::/0 (deny) [] to list wan_v4.auto
2022-09-08 11:18:41.515949 100.00% [NOTICE] switch_core.c:1529 Created ip list any_v6.auto default (allow)
2022-09-08 11:18:41.515954 100.00% [NOTICE] switch_utils.c:667 Adding 0.0.0.0/0 (deny) [] to list any_v6.auto
2022-09-08 11:18:41.515958 100.00% [NOTICE] switch_core.c:1536 Created ip list any_v4.auto default (allow)
2022-09-08 11:18:41.515961 100.00% [NOTICE] switch_utils.c:667 Adding ::/0 (deny) [] to list any_v4.auto
2022-09-08 11:18:41.515963 100.00% [NOTICE] switch_core.c:1543 Created ip list nat.auto default (deny)
2022-09-08 11:18:41.515966 100.00% [NOTICE] switch_core.c:1545 Adding 192.168.10.153/255.255.255.0 (deny) to list nat.auto
2022-09-08 11:18:41.515972 100.00% [NOTICE] switch_utils.c:667 Adding 10.0.0.0/8 (allow) [] to list nat.auto
2022-09-08 11:18:41.515975 100.00% [NOTICE] switch_utils.c:667 Adding 172.16.0.0/12 (allow) [] to list nat.auto
2022-09-08 11:18:41.515978 100.00% [NOTICE] switch_utils.c:667 Adding 192.168.0.0/16 (allow) [] to list nat.auto
2022-09-08 11:18:41.515981 100.00% [NOTICE] switch_utils.c:667 Adding 100.64.0.0/10 (allow) [] to list nat.auto
2022-09-08 11:18:41.515987 100.00% [NOTICE] switch_core.c:1555 Created ip list loopback.auto default (deny)
2022-09-08 11:18:41.515991 100.00% [NOTICE] switch_utils.c:667 Adding 127.0.0.0/8 (allow) [] to list loopback.auto
2022-09-08 11:18:41.515995 100.00% [NOTICE] switch_utils.c:667 Adding ::1/128 (allow) [] to list loopback.auto
2022-09-08 11:18:41.516000 100.00% [NOTICE] switch_core.c:1562 Created ip list localnet.auto default (deny)
2022-09-08 11:18:41.516004 100.00% [NOTICE] switch_core.c:1565 Adding 192.168.10.153/255.255.255.0 (allow) to list localnet.auto
2022-09-08 11:18:41.517334 100.00% [DEBUG] mod_event_socket.c:2984 Socket up listening on 0.0.0.0:8021
2022-09-08 11:18:41.520547 100.00% [NOTICE] switch_utils.c:667 Adding 192.168.10.0/24 (allow) [] to list domains
2022-09-08 11:18:41.520551 100.00% [NOTICE] switch_utils.c:667 Adding 195.60.190.156/32 (allow) [] to list domains
2022-09-08 11:18:41.520555 100.00% [NOTICE] switch_utils.c:667 Adding 89.21.204.0/24 (allow) [] to list domains
2022-09-08 11:18:41.520559 100.00% [NOTICE] switch_utils.c:667 Adding 89.21.204.160/32 (allow) [] to list domains
2022-09-08 11:18:41.520563 100.00% [NOTICE] switch_utils.c:667 Adding 192.168.10.183/32 (allow) [] to list domains
2022-09-08 11:18:41.520566 100.00% [NOTICE] switch_utils.c:667 Adding 89.21.204.164/32 (allow) [] to list domains
2022-09-08 11:18:41.520577 100.00% [NOTICE] switch_utils.c:667 Adding 10.0.0.0/8 (allow) [] to list rfc1918
2022-09-08 11:18:41.520581 100.00% [NOTICE] switch_utils.c:667 Adding 172.16.0.0/12 (allow) [] to list rfc1918
2022-09-08 11:18:41.520585 100.00% [NOTICE] switch_utils.c:667 Adding 192.168.0.0/16 (allow) [] to list rfc1918
2022-09-08 11:18:41.522078 100.00% [WARNING] switch_core.c:2332 Implicitly setting events-use-dispatch based on usage of this initial-event-threads parameter.
2022-09-08 11:18:41.522096 100.00% [WARNING] switch_core.c:2340 This value cannot be higher than 2 so setting it to that value
2022-09-08 11:18:41.522179 100.00% [INFO] switch_core.c:2553
FreeSWITCH Version 1.10.7-release.13~64bit (-release.13 64bit)

FreeSWITCH Started
Max Sessions [1000]
Session Rate [30]
SQL [Enabled]


I can't understand why, anyone can help me
 

cargreg

New Member
Apr 26, 2018
27
2
3
36
Hi guys, i found the problem, it's seems that module dbi causes the freeswitch crash
 
Status
Not open for further replies.