Analytics Tracking Code

Thursday, November 27, 2014

Telephone Call

I called my mom today.

Exciting news?  Well what's most interesting is that I did it via freeswitch running on openbsd-current (2014-11-26).

Lots of things to do still, like tidying up the make files, writing init scripts, writing the port make files and other techy things (hash tables).

Testing testing testing as well.

Tuesday, November 25, 2014

FreeSWITCH on OpenBSD - Project Status 2014-11-25

There is this thing called the y2038 issue. It's similar to the y2k bug, but in my opinion, much more likely to cause issues. If you have a moment read this 2013 paper on moving to 64bit time_t. So moral of the story is that openbsd has migrated to 64bit time_t and this is of course impacting software which casually depends on 32bit time_t.

The first time_t bug I squashed in freeswitch (at least on my openbsd shallow fork project thing) is in the extension registration code where it tries to update the registration expiration time in the registration db. The fs 1.2 code presumes that time_t is 32 bits by using printf %lu to build its sqlite query; at the same time as patching the code I improved its readability (in my opinion) and corrected a memory leak. This particular bug was easy to find since it was causing a segmentation fault, other similar problems may(will) be more subtle.

Anyway here's the patch. I've seen a number of other similar calls, which I will be auditing carefully.

Thursday, November 20, 2014

FreeSWITCH on OpenBSD - Project Status 2014-11-20

Freeswitch is building and running! Not in a very stable fashion mind you!

I'm pleased that a lot of the setup work to build the software is functional now to the point that I can actually start stabilizing the program. Notably, most of the modules that I care about for my use case are now compiled and loading succesfully.

Still do do... well there is lots to do, mostly revolving around stabilizing for the time being.

First bug I've hit is when I try and register a extension, the daemon is segfaulting shortly thereafter.

Time for more fun :)

Sunday, November 16, 2014

FreeSWITCH on OpenBSD - Project Status 2014-11-16

Thought I should mention that my Freeswitch shallow fork turns on and officially does things on OpenBSD now.
Lots of fiddling to do:
  • init script
  • Tighten up configuration
  • Call and Load Testing
  • Port a few more modules (some codecs mostly)
Here is the output from running the vanilla upstream config, and shutting down after it starts.
# fsd -nonat
2014-11-13 11:52:07.599773 [INFO] switch_event.c:594 Activate Eventing Engine.
2014-11-13 11:52:07.623802 [WARNING] switch_event.c:568 Create additional event dispatch thread 0
2014-11-13 11:52:07.812884 [INFO] switch_core_sqldb.c:3098 Opening DB
2014-11-13 11:52:08.079475 [INFO] switch_core_sqldb.c:1449 CORE Starting SQL thread.
2014-11-13 11:52:08.094839 [NOTICE] switch_scheduler.c:171 Starting task thread
2014-11-13 11:52:08.103777 [DEBUG] switch_scheduler.c:219 Added task 1 heartbeat (core) to run at 1415904728
2014-11-13 11:52:08.105694 [DEBUG] switch_scheduler.c:219 Added task 2 check_ip (core) to run at 1415904728
2014-11-13 11:52:08.108272 [NOTICE] switch_core.c:1225 Created ip list rfc1918.auto default (deny)
2014-11-13 11:52:08.108988 [NOTICE] switch_utils.c:313 Adding 10.0.0.0/8 (allow) [] to list rfc1918.auto
2014-11-13 11:52:08.109837 [NOTICE] switch_utils.c:313 Adding 172.16.0.0/12 (allow) [] to list rfc1918.auto
2014-11-13 11:52:08.110485 [NOTICE] switch_utils.c:313 Adding 192.168.0.0/16 (allow) [] to list rfc1918.auto
2014-11-13 11:52:08.111373 [NOTICE] switch_core.c:1233 Created ip list wan.auto default (allow)
2014-11-13 11:52:08.112252 [NOTICE] switch_utils.c:313 Adding 0.0.0.0/8 (deny) [] to list wan.auto
2014-11-13 11:52:08.112997 [NOTICE] switch_utils.c:313 Adding 10.0.0.0/8 (deny) [] to list wan.auto
2014-11-13 11:52:08.114487 [NOTICE] switch_utils.c:313 Adding 172.16.0.0/12 (deny) [] to list wan.auto
2014-11-13 11:52:08.115433 [NOTICE] switch_utils.c:313 Adding 192.168.0.0/16 (deny) [] to list wan.auto
2014-11-13 11:52:08.116184 [NOTICE] switch_core.c:1242 Created ip list nat.auto default (deny)
2014-11-13 11:52:08.117000 [NOTICE] switch_core.c:1244 Adding 192.168.222.10/255.255.255.0 (deny) to list nat.auto
2014-11-13 11:52:08.117825 [NOTICE] switch_utils.c:313 Adding 10.0.0.0/8 (allow) [] to list nat.auto
2014-11-13 11:52:08.118473 [NOTICE] switch_utils.c:313 Adding 172.16.0.0/12 (allow) [] to list nat.auto
2014-11-13 11:52:08.119118 [NOTICE] switch_utils.c:313 Adding 192.168.0.0/16 (allow) [] to list nat.auto
2014-11-13 11:52:08.119592 [NOTICE] switch_core.c:1253 Created ip list loopback.auto default (deny)
2014-11-13 11:52:08.120040 [NOTICE] switch_utils.c:313 Adding 127.0.0.0/8 (allow) [] to list loopback.auto
2014-11-13 11:52:08.120514 [NOTICE] switch_core.c:1259 Created ip list localnet.auto default (deny)
2014-11-13 11:52:08.120959 [NOTICE] switch_core.c:1262 Adding 192.168.222.10/255.255.255.0 (allow) to list localnet.auto
2014-11-13 11:52:08.121830 [CONSOLE] switch_core.c:1289 Created ip list lan default (allow)
2014-11-13 11:52:08.122403 [NOTICE] switch_utils.c:313 Adding 192.168.42.0/24 (deny) [] to list lan
2014-11-13 11:52:08.122826 [NOTICE] switch_core.c:1358 Adding 192.168.42.0/24 (deny) to list lan
2014-11-13 11:52:08.123298 [NOTICE] switch_utils.c:313 Adding 192.168.42.42/32 (allow) [] to list lan
2014-11-13 11:52:08.123773 [NOTICE] switch_core.c:1358 Adding 192.168.42.42/32 (allow) to list lan
2014-11-13 11:52:08.124264 [CONSOLE] switch_core.c:1289 Created ip list domains default (deny)
2014-11-13 11:52:08.125212 [NOTICE] switch_utils.c:313 Adding 192.0.2.0/24 (allow) [brian@192.168.222.10] to list domains
2014-11-13 11:52:08.125706 [CONSOLE] switch_core.c:2059 Bringing up environment.
2014-11-13 11:52:08.126611 [CONSOLE] switch_core.c:2060 Loading Modules.
2014-11-13 11:52:08.128417 [INFO] switch_time.c:1173 Timezone loaded 530 definitions
2014-11-13 11:52:08.128969 [CONSOLE] switch_time.c:1315 Calibrating timer, please wait...
2014-11-13 11:52:08.129582 [WARNING] switch_time.c:232 Timer resolution of 10000 microseconds detected!
Do you have your kernel timer frequency set to lower than 1,000Hz? You may experience audio problems. Step MS 20
2014-11-13 11:52:13.232997 [INFO] switch_time.c:475 Clock synchronized to system time.
2014-11-13 11:52:13.233558 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [CORE_SOFTTIMER_MODULE]
2014-11-13 11:52:13.234127 [NOTICE] switch_loadable_module.c:238 Adding Timer 'soft'
2014-11-13 11:52:13.235221 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [CORE_PCM_MODULE]
2014-11-13 11:52:13.236051 [NOTICE] switch_loadable_module.c:189 Adding Codec PROXY-VID 31 PROXY VIDEO PASS-THROUGH 90000hz 0ms 0bps
2014-11-13 11:52:13.236829 [NOTICE] switch_loadable_module.c:189 Adding Codec PROXY 0 PROXY PASS-THROUGH 8000hz 20ms 0bps
2014-11-13 11:52:13.237531 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 11025hz 32ms 176400bps
2014-11-13 11:52:13.238460 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 11025hz 40ms 176400bps
2014-11-13 11:52:13.238955 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 22050hz 20ms 352800bps
2014-11-13 11:52:13.239427 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 48000hz 40ms 768000bps
2014-11-13 11:52:13.240013 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 48000hz 30ms 768000bps
2014-11-13 11:52:13.240464 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 48000hz 20ms 768000bps
2014-11-13 11:52:13.241376 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 32000hz 8ms 512000bps
2014-11-13 11:52:13.242225 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 32000hz 6ms 512000bps
2014-11-13 11:52:13.242712 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 32000hz 4ms 512000bps
2014-11-13 11:52:13.243254 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 32000hz 2ms 512000bps
2014-11-13 11:52:13.243345 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 16000hz 8ms 256000bps
2014-11-13 11:52:13.243397 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 16000hz 6ms 256000bps
2014-11-13 11:52:13.243674 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 16000hz 4ms 256000bps
2014-11-13 11:52:13.244036 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 16000hz 2ms 256000bps
2014-11-13 11:52:13.244297 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 8000hz 8ms 128000bps
2014-11-13 11:52:13.244368 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 8000hz 6ms 128000bps
2014-11-13 11:52:13.244846 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 8000hz 4ms 128000bps
2014-11-13 11:52:13.244918 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 8000hz 2ms 128000bps
2014-11-13 11:52:13.245366 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 48000hz 10ms 768000bps
2014-11-13 11:52:13.245437 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 48000hz 8ms 768000bps
2014-11-13 11:52:13.245908 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 48000hz 6ms 768000bps
2014-11-13 11:52:13.245981 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 48000hz 4ms 768000bps
2014-11-13 11:52:13.246432 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 48000hz 2ms 768000bps
2014-11-13 11:52:13.246549 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 24000hz 60ms 384000bps
2014-11-13 11:52:13.247027 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 24000hz 40ms 384000bps
2014-11-13 11:52:13.247101 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 24000hz 20ms 384000bps
2014-11-13 11:52:13.247536 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 12000hz 100ms 192000bps
2014-11-13 11:52:13.247608 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 12000hz 80ms 192000bps
2014-11-13 11:52:13.248141 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 12000hz 60ms 192000bps
2014-11-13 11:52:13.248216 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 12000hz 40ms 192000bps
2014-11-13 11:52:13.248670 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 12000hz 20ms 192000bps
2014-11-13 11:52:13.248775 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 32000hz 10ms 512000bps
2014-11-13 11:52:13.249223 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 32000hz 20ms 512000bps
2014-11-13 11:52:13.249294 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 32000hz 30ms 512000bps
2014-11-13 11:52:13.249758 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 32000hz 40ms 512000bps
2014-11-13 11:52:13.249830 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 32000hz 50ms 512000bps
2014-11-13 11:52:13.250280 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 32000hz 60ms 512000bps
2014-11-13 11:52:13.250352 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 16000hz 10ms 256000bps
2014-11-13 11:52:13.250829 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 16000hz 20ms 256000bps
2014-11-13 11:52:13.250902 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 16000hz 30ms 256000bps
2014-11-13 11:52:13.251445 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 16000hz 40ms 256000bps
2014-11-13 11:52:13.251519 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 16000hz 50ms 256000bps
2014-11-13 11:52:13.251977 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 16000hz 60ms 256000bps
2014-11-13 11:52:13.252049 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 8000hz 10ms 128000bps
2014-11-13 11:52:13.252492 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 8000hz 20ms 128000bps
2014-11-13 11:52:13.252563 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 8000hz 30ms 128000bps
2014-11-13 11:52:13.254060 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 8000hz 40ms 128000bps
2014-11-13 11:52:13.254141 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 8000hz 50ms 128000bps
2014-11-13 11:52:13.254611 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 8000hz 60ms 128000bps
2014-11-13 11:52:13.254764 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 8000hz 70ms 128000bps
2014-11-13 11:52:13.255217 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 8000hz 80ms 128000bps
2014-11-13 11:52:13.255287 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 8000hz 90ms 128000bps
2014-11-13 11:52:13.256072 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 8000hz 100ms 128000bps
2014-11-13 11:52:13.256145 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 8000hz 110ms 128000bps
2014-11-13 11:52:13.256601 [NOTICE] switch_loadable_module.c:189 Adding Codec L16 70 RAW Signed Linear (16 bit) 8000hz 120ms 128000bps
2014-11-13 11:52:13.256866 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMU 0 G.711 ulaw 8000hz 10ms 64000bps
2014-11-13 11:52:13.257314 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMU 0 G.711 ulaw 8000hz 20ms 64000bps
2014-11-13 11:52:13.257382 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMU 0 G.711 ulaw 8000hz 30ms 64000bps
2014-11-13 11:52:13.257435 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMU 0 G.711 ulaw 8000hz 40ms 64000bps
2014-11-13 11:52:13.258062 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMU 0 G.711 ulaw 8000hz 50ms 64000bps
2014-11-13 11:52:13.258133 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMU 0 G.711 ulaw 8000hz 60ms 64000bps
2014-11-13 11:52:13.258185 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMU 0 G.711 ulaw 8000hz 70ms 64000bps
2014-11-13 11:52:13.258633 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMU 0 G.711 ulaw 8000hz 80ms 64000bps
2014-11-13 11:52:13.258783 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMU 0 G.711 ulaw 8000hz 90ms 64000bps
2014-11-13 11:52:13.258838 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMU 0 G.711 ulaw 8000hz 100ms 64000bps
2014-11-13 11:52:13.259316 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMU 0 G.711 ulaw 8000hz 110ms 64000bps
2014-11-13 11:52:13.259385 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMU 0 G.711 ulaw 8000hz 120ms 64000bps
2014-11-13 11:52:13.259507 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMA 8 G.711 alaw 8000hz 10ms 64000bps
2014-11-13 11:52:13.260046 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMA 8 G.711 alaw 8000hz 20ms 64000bps
2014-11-13 11:52:13.260115 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMA 8 G.711 alaw 8000hz 30ms 64000bps
2014-11-13 11:52:13.260166 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMA 8 G.711 alaw 8000hz 40ms 64000bps
2014-11-13 11:52:13.260805 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMA 8 G.711 alaw 8000hz 50ms 64000bps
2014-11-13 11:52:13.260876 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMA 8 G.711 alaw 8000hz 60ms 64000bps
2014-11-13 11:52:13.260927 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMA 8 G.711 alaw 8000hz 70ms 64000bps
2014-11-13 11:52:13.261396 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMA 8 G.711 alaw 8000hz 80ms 64000bps
2014-11-13 11:52:13.261466 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMA 8 G.711 alaw 8000hz 90ms 64000bps
2014-11-13 11:52:13.261518 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMA 8 G.711 alaw 8000hz 100ms 64000bps
2014-11-13 11:52:13.262116 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMA 8 G.711 alaw 8000hz 110ms 64000bps
2014-11-13 11:52:13.262187 [NOTICE] switch_loadable_module.c:189 Adding Codec PCMA 8 G.711 alaw 8000hz 120ms 64000bps
2014-11-13 11:52:13.264603 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [mod_console]
2014-11-13 11:52:13.264776 [NOTICE] switch_loadable_module.c:305 Adding API Function 'console'
2014-11-13 11:52:13.269032 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [mod_logfile]
2014-11-13 11:52:13.273450 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [mod_cdr_csv]
2014-11-13 11:52:13.273635 [NOTICE] switch_loadable_module.c:305 Adding API Function 'cdr_csv'
2014-11-13 11:52:13.300202 [NOTICE] switch_loadable_module.c:259 Adding Application 'socket'
2014-11-13 11:52:13.300395 [NOTICE] switch_loadable_module.c:305 Adding API Function 'event_sink'
2014-11-13 11:52:13.324375 [INFO] mod_sofia.c:5936 Starting initial message thread.
2014-11-13 11:52:13.337020 [NOTICE] sofia.c:4755 Started Profile external [sofia_reg_external]
2014-11-13 11:52:13.348216 [WARNING] sofia.c:1639 MSG Thread 0 Started
2014-11-13 11:52:13.379864 [NOTICE] sofia.c:4755 Started Profile internal-ipv6 [sofia_reg_internal-ipv6]
2014-11-13 11:52:13.381952 [NOTICE] sofia.c:4755 Started Profile internal [sofia_reg_internal]
2014-11-13 11:52:13.452583 [INFO] switch_core_sqldb.c:1449 sofia:external Starting SQL thread.
2014-11-13 11:52:13.453577 [NOTICE] sofia_reg.c:3017 Added gateway 'example.com' to profile 'external'
2014-11-13 11:52:13.474181 [INFO] switch_core_sqldb.c:1449 sofia:internal Starting SQL thread.
2014-11-13 11:52:13.507312 [INFO] switch_core_sqldb.c:1449 sofia:internal-ipv6 Starting SQL thread.
2014-11-13 11:52:13.528713 [NOTICE] sofia.c:3319 Adding Alias [192.168.222.10] for profile [internal]
2014-11-13 11:52:14.944424 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [mod_sofia]
2014-11-13 11:52:14.944516 [NOTICE] switch_loadable_module.c:147 Adding Endpoint 'sofia'
2014-11-13 11:52:14.944614 [NOTICE] switch_loadable_module.c:147 Adding Endpoint 'rtp'
2014-11-13 11:52:14.944825 [NOTICE] switch_loadable_module.c:259 Adding Application 'sofia_sla'
2014-11-13 11:52:14.944991 [NOTICE] switch_loadable_module.c:305 Adding API Function 'sofia'
2014-11-13 11:52:14.945156 [NOTICE] switch_loadable_module.c:305 Adding API Function 'sofia_gateway_data'
2014-11-13 11:52:14.945451 [NOTICE] switch_loadable_module.c:305 Adding API Function 'sofia_username_of'
2014-11-13 11:52:14.945655 [NOTICE] switch_loadable_module.c:305 Adding API Function 'sofia_contact'
2014-11-13 11:52:14.945857 [NOTICE] switch_loadable_module.c:305 Adding API Function 'sofia_count_reg'
2014-11-13 11:52:14.946055 [NOTICE] switch_loadable_module.c:305 Adding API Function 'sofia_dig'
2014-11-13 11:52:14.946348 [NOTICE] switch_loadable_module.c:305 Adding API Function 'sofia_presence_data'
2014-11-13 11:52:14.946556 [NOTICE] switch_loadable_module.c:417 Adding Chat interface 'sip'
2014-11-13 11:52:14.946757 [NOTICE] switch_loadable_module.c:463 Adding Management interface 'mod_sofia' OID[.1.3.6.1.4.1.27880.1001]
2014-11-13 11:52:14.948478 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [mod_loopback]
2014-11-13 11:52:14.948560 [NOTICE] switch_loadable_module.c:147 Adding Endpoint 'loopback'
2014-11-13 11:52:14.948786 [NOTICE] switch_loadable_module.c:259 Adding Application 'unloop'
2014-11-13 11:52:14.955548 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [mod_commands]
2014-11-13 11:52:14.955720 [NOTICE] switch_loadable_module.c:305 Adding API Function 'acl'
2014-11-13 11:52:14.955945 [NOTICE] switch_loadable_module.c:305 Adding API Function 'alias'
2014-11-13 11:52:14.956164 [NOTICE] switch_loadable_module.c:305 Adding API Function 'banner'
2014-11-13 11:52:14.956461 [NOTICE] switch_loadable_module.c:305 Adding API Function 'bgapi'
2014-11-13 11:52:14.956666 [NOTICE] switch_loadable_module.c:305 Adding API Function 'bg_system'
2014-11-13 11:52:14.956869 [NOTICE] switch_loadable_module.c:305 Adding API Function 'break'
2014-11-13 11:52:14.957087 [NOTICE] switch_loadable_module.c:305 Adding API Function 'complete'
2014-11-13 11:52:14.957377 [NOTICE] switch_loadable_module.c:305 Adding API Function 'cond'
2014-11-13 11:52:14.957588 [NOTICE] switch_loadable_module.c:305 Adding API Function 'console_complete'
2014-11-13 11:52:14.957791 [NOTICE] switch_loadable_module.c:305 Adding API Function 'console_complete_xml'
2014-11-13 11:52:14.958002 [NOTICE] switch_loadable_module.c:305 Adding API Function 'create_uuid'
2014-11-13 11:52:14.958280 [NOTICE] switch_loadable_module.c:305 Adding API Function 'db_cache'
2014-11-13 11:52:14.958495 [NOTICE] switch_loadable_module.c:305 Adding API Function 'domain_exists'
2014-11-13 11:52:14.958696 [NOTICE] switch_loadable_module.c:305 Adding API Function 'echo'
2014-11-13 11:52:14.958965 [NOTICE] switch_loadable_module.c:305 Adding API Function 'escape'
2014-11-13 11:52:14.959171 [NOTICE] switch_loadable_module.c:305 Adding API Function 'eval'
2014-11-13 11:52:14.959529 [NOTICE] switch_loadable_module.c:305 Adding API Function 'expand'
2014-11-13 11:52:14.959786 [NOTICE] switch_loadable_module.c:305 Adding API Function 'find_user_xml'
2014-11-13 11:52:14.960004 [NOTICE] switch_loadable_module.c:305 Adding API Function 'fsctl'
2014-11-13 11:52:14.960287 [NOTICE] switch_loadable_module.c:305 Adding API Function '...'
2014-11-13 11:52:14.960568 [NOTICE] switch_loadable_module.c:305 Adding API Function 'shutdown'
2014-11-13 11:52:14.960785 [NOTICE] switch_loadable_module.c:305 Adding API Function 'version'
2014-11-13 11:52:14.960989 [NOTICE] switch_loadable_module.c:305 Adding API Function 'global_getvar'
2014-11-13 11:52:14.961282 [NOTICE] switch_loadable_module.c:305 Adding API Function 'global_setvar'
2014-11-13 11:52:14.961510 [NOTICE] switch_loadable_module.c:305 Adding API Function 'group_call'
2014-11-13 11:52:14.961725 [NOTICE] switch_loadable_module.c:305 Adding API Function 'help'
2014-11-13 11:52:14.961928 [NOTICE] switch_loadable_module.c:305 Adding API Function 'host_lookup'
2014-11-13 11:52:14.962128 [NOTICE] switch_loadable_module.c:305 Adding API Function 'hostname'
2014-11-13 11:52:14.962411 [NOTICE] switch_loadable_module.c:305 Adding API Function 'switchname'
2014-11-13 11:52:14.962629 [NOTICE] switch_loadable_module.c:305 Adding API Function 'hupall'
2014-11-13 11:52:14.962828 [NOTICE] switch_loadable_module.c:305 Adding API Function 'in_group'
2014-11-13 11:52:14.963030 [NOTICE] switch_loadable_module.c:305 Adding API Function 'is_lan_addr'
2014-11-13 11:52:14.963440 [NOTICE] switch_loadable_module.c:305 Adding API Function 'limit_usage'
2014-11-13 11:52:14.963719 [NOTICE] switch_loadable_module.c:305 Adding API Function 'limit_hash_usage'
2014-11-13 11:52:14.963926 [NOTICE] switch_loadable_module.c:305 Adding API Function 'limit_status'
2014-11-13 11:52:14.964129 [NOTICE] switch_loadable_module.c:305 Adding API Function 'limit_reset'
2014-11-13 11:52:14.964491 [NOTICE] switch_loadable_module.c:305 Adding API Function 'limit_interval_reset'
2014-11-13 11:52:14.964695 [NOTICE] switch_loadable_module.c:305 Adding API Function 'list_users'
2014-11-13 11:52:14.964952 [NOTICE] switch_loadable_module.c:305 Adding API Function 'load'
2014-11-13 11:52:14.965283 [NOTICE] switch_loadable_module.c:305 Adding API Function 'log'
2014-11-13 11:52:14.965512 [NOTICE] switch_loadable_module.c:305 Adding API Function 'md5'
2014-11-13 11:52:14.965716 [NOTICE] switch_loadable_module.c:305 Adding API Function 'module_exists'
2014-11-13 11:52:14.965974 [NOTICE] switch_loadable_module.c:305 Adding API Function 'msleep'
2014-11-13 11:52:14.966312 [NOTICE] switch_loadable_module.c:305 Adding API Function 'nat_map'
2014-11-13 11:52:14.966543 [NOTICE] switch_loadable_module.c:305 Adding API Function 'originate'
2014-11-13 11:52:14.966750 [NOTICE] switch_loadable_module.c:305 Adding API Function 'pause'
2014-11-13 11:52:14.966954 [NOTICE] switch_loadable_module.c:305 Adding API Function 'quote_shell_arg'
2014-11-13 11:52:14.967168 [NOTICE] switch_loadable_module.c:305 Adding API Function 'regex'
2014-11-13 11:52:14.967521 [NOTICE] switch_loadable_module.c:305 Adding API Function 'reloadacl'
2014-11-13 11:52:14.967727 [NOTICE] switch_loadable_module.c:305 Adding API Function 'reload'
2014-11-13 11:52:14.967925 [NOTICE] switch_loadable_module.c:305 Adding API Function 'reloadxml'
2014-11-13 11:52:14.968138 [NOTICE] switch_loadable_module.c:305 Adding API Function 'replace'
2014-11-13 11:52:14.968428 [NOTICE] switch_loadable_module.c:305 Adding API Function 'say_string'
2014-11-13 11:52:14.968636 [NOTICE] switch_loadable_module.c:305 Adding API Function 'sched_api'
2014-11-13 11:52:14.968844 [NOTICE] switch_loadable_module.c:305 Adding API Function 'sched_broadcast'
2014-11-13 11:52:14.969115 [NOTICE] switch_loadable_module.c:305 Adding API Function 'sched_del'
2014-11-13 11:52:14.969429 [NOTICE] switch_loadable_module.c:305 Adding API Function 'sched_hangup'
2014-11-13 11:52:14.969644 [NOTICE] switch_loadable_module.c:305 Adding API Function 'sched_transfer'
2014-11-13 11:52:14.969848 [NOTICE] switch_loadable_module.c:305 Adding API Function 'show'
2014-11-13 11:52:14.970069 [NOTICE] switch_loadable_module.c:305 Adding API Function 'sql_escape'
2014-11-13 11:52:14.970365 [NOTICE] switch_loadable_module.c:305 Adding API Function 'status'
2014-11-13 11:52:14.970577 [NOTICE] switch_loadable_module.c:305 Adding API Function 'strftime_tz'
2014-11-13 11:52:14.970778 [NOTICE] switch_loadable_module.c:305 Adding API Function 'stun'
2014-11-13 11:52:14.970992 [NOTICE] switch_loadable_module.c:305 Adding API Function 'system'
2014-11-13 11:52:14.971193 [NOTICE] switch_loadable_module.c:305 Adding API Function 'time_test'
2014-11-13 11:52:14.971484 [NOTICE] switch_loadable_module.c:305 Adding API Function 'timer_test'
2014-11-13 11:52:14.971689 [NOTICE] switch_loadable_module.c:305 Adding API Function 'tone_detect'
2014-11-13 11:52:14.972006 [NOTICE] switch_loadable_module.c:305 Adding API Function 'unload'
2014-11-13 11:52:14.972377 [NOTICE] switch_loadable_module.c:305 Adding API Function 'unsched_api'
2014-11-13 11:52:14.972585 [NOTICE] switch_loadable_module.c:305 Adding API Function 'reg_url'
2014-11-13 11:52:14.972797 [NOTICE] switch_loadable_module.c:305 Adding API Function 'url_decode'
2014-11-13 11:52:14.972995 [NOTICE] switch_loadable_module.c:305 Adding API Function 'url_encode'
2014-11-13 11:52:14.973197 [NOTICE] switch_loadable_module.c:305 Adding API Function 'user_data'
2014-11-13 11:52:14.973585 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_early_ok'
2014-11-13 11:52:14.973801 [NOTICE] switch_loadable_module.c:305 Adding API Function 'user_exists'
2014-11-13 11:52:14.974004 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_answer'
2014-11-13 11:52:14.974284 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_audio'
2014-11-13 11:52:14.974500 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_break'
2014-11-13 11:52:14.974715 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_bridge'
2014-11-13 11:52:14.974916 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_broadcast'
2014-11-13 11:52:14.975171 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_buglist'
2014-11-13 11:52:14.975564 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_chat'
2014-11-13 11:52:14.975829 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_debug_media'
2014-11-13 11:52:14.976036 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_deflect'
2014-11-13 11:52:14.976282 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_displace'
2014-11-13 11:52:14.976512 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_display'
2014-11-13 11:52:14.976714 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_dump'
2014-11-13 11:52:14.976932 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_exists'
2014-11-13 11:52:14.977136 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_fileman'
2014-11-13 11:52:14.977398 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_flush_dtmf'
2014-11-13 11:52:14.977606 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_getvar'
2014-11-13 11:52:14.977808 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_hold'
2014-11-13 11:52:14.978022 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_kill'
2014-11-13 11:52:14.978266 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_send_message'
2014-11-13 11:52:14.978605 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_send_info'
2014-11-13 11:52:14.978928 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_video_refresh'
2014-11-13 11:52:14.979157 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_outgoing_answer'
2014-11-13 11:52:14.979414 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_limit'
2014-11-13 11:52:14.979694 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_limit_release'
2014-11-13 11:52:14.979901 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_limit_release'
2014-11-13 11:52:14.980156 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_loglevel'
2014-11-13 11:52:14.980419 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_media'
2014-11-13 11:52:14.980626 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_media_reneg'
2014-11-13 11:52:14.980830 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_park'
2014-11-13 11:52:14.981046 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_pause'
2014-11-13 11:52:14.981287 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_phone_event'
2014-11-13 11:52:14.981572 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_pre_answer'
2014-11-13 11:52:14.981874 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_preprocess'
2014-11-13 11:52:14.982091 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_record'
2014-11-13 11:52:14.982397 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_recovery_refresh'
2014-11-13 11:52:14.982608 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_recv_dtmf'
2014-11-13 11:52:14.982878 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_send_dtmf'
2014-11-13 11:52:14.983099 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_session_heartbeat'
2014-11-13 11:52:14.983543 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_setvar_multi'
2014-11-13 11:52:14.983761 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_setvar'
2014-11-13 11:52:14.983978 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_transfer'
2014-11-13 11:52:14.984182 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_dual_transfer'
2014-11-13 11:52:14.984437 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_simplify'
2014-11-13 11:52:14.984647 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_jitterbuffer'
2014-11-13 11:52:14.984975 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_zombie_exec'
2014-11-13 11:52:14.985181 [NOTICE] switch_loadable_module.c:305 Adding API Function 'xml_flush_cache'
2014-11-13 11:52:14.985476 [NOTICE] switch_loadable_module.c:305 Adding API Function 'xml_locate'
2014-11-13 11:52:14.985682 [NOTICE] switch_loadable_module.c:305 Adding API Function 'xml_wrap'
2014-11-13 11:52:14.985897 [NOTICE] switch_loadable_module.c:305 Adding API Function 'file_exists'
2014-11-13 11:52:14.990180 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [mod_conference]
2014-11-13 11:52:14.990342 [NOTICE] switch_loadable_module.c:259 Adding Application 'conference'
2014-11-13 11:52:14.990658 [CONSOLE] sofia_presence.c:1575 Event Thread Started
2014-11-13 11:52:14.990730 [NOTICE] switch_loadable_module.c:259 Adding Application 'conference_set_auto_outcall'
2014-11-13 11:52:14.990828 [NOTICE] switch_loadable_module.c:305 Adding API Function 'conference'
2014-11-13 11:52:14.990965 [NOTICE] switch_loadable_module.c:417 Adding Chat interface 'conf'
2014-11-13 11:52:14.997537 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [mod_db]
2014-11-13 11:52:14.997621 [NOTICE] switch_loadable_module.c:259 Adding Application 'db'
2014-11-13 11:52:14.997703 [NOTICE] switch_loadable_module.c:259 Adding Application 'group'
2014-11-13 11:52:14.997772 [NOTICE] switch_loadable_module.c:305 Adding API Function 'db'
2014-11-13 11:52:14.997852 [NOTICE] switch_loadable_module.c:305 Adding API Function 'group'
2014-11-13 11:52:14.997924 [NOTICE] switch_loadable_module.c:490 Adding Limit interface 'db'
2014-11-13 11:52:15.518934 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [mod_dptools]
2014-11-13 11:52:15.519031 [NOTICE] switch_loadable_module.c:147 Adding Endpoint 'error'
2014-11-13 11:52:15.519121 [NOTICE] switch_loadable_module.c:147 Adding Endpoint 'group'
2014-11-13 11:52:15.519262 [NOTICE] switch_loadable_module.c:147 Adding Endpoint 'user'
2014-11-13 11:52:15.519331 [NOTICE] switch_loadable_module.c:147 Adding Endpoint 'pickup'
2014-11-13 11:52:15.519397 [NOTICE] switch_loadable_module.c:217 Adding Dialplan 'inline'
2014-11-13 11:52:15.519463 [NOTICE] switch_loadable_module.c:259 Adding Application 'blind_transfer_ack'
2014-11-13 11:52:15.519534 [NOTICE] switch_loadable_module.c:259 Adding Application 'bind_digit_action'
2014-11-13 11:52:15.519604 [NOTICE] switch_loadable_module.c:259 Adding Application 'capture'
2014-11-13 11:52:15.519711 [NOTICE] switch_loadable_module.c:259 Adding Application 'clear_digit_action'
2014-11-13 11:52:15.519794 [NOTICE] switch_loadable_module.c:259 Adding Application 'digit_action_set_realm'
2014-11-13 11:52:15.519919 [NOTICE] switch_loadable_module.c:259 Adding Application 'privacy'
2014-11-13 11:52:15.520036 [NOTICE] switch_loadable_module.c:259 Adding Application 'set_audio_level'
2014-11-13 11:52:15.520151 [NOTICE] switch_loadable_module.c:259 Adding Application 'set_mute'
2014-11-13 11:52:15.520278 [NOTICE] switch_loadable_module.c:259 Adding Application 'flush_dtmf'
2014-11-13 11:52:15.520349 [NOTICE] switch_loadable_module.c:259 Adding Application 'hold'
2014-11-13 11:52:15.520415 [NOTICE] switch_loadable_module.c:259 Adding Application 'unhold'
2014-11-13 11:52:15.520481 [NOTICE] switch_loadable_module.c:259 Adding Application 'mutex'
2014-11-13 11:52:15.520547 [NOTICE] switch_loadable_module.c:259 Adding Application 'page'
2014-11-13 11:52:15.520615 [NOTICE] switch_loadable_module.c:259 Adding Application 'transfer'
2014-11-13 11:52:15.520729 [NOTICE] switch_loadable_module.c:259 Adding Application 'check_acl'
2014-11-13 11:52:15.520985 [NOTICE] switch_loadable_module.c:259 Adding Application 'verbose_events'
2014-11-13 11:52:15.521187 [NOTICE] switch_loadable_module.c:259 Adding Application 'cng_plc'
2014-11-13 11:52:15.521260 [NOTICE] switch_loadable_module.c:259 Adding Application 'early_hangup'
2014-11-13 11:52:15.521335 [NOTICE] switch_loadable_module.c:259 Adding Application 'sleep'
2014-11-13 11:52:15.521528 [NOTICE] switch_loadable_module.c:259 Adding Application 'delay_echo'
2014-11-13 11:52:15.521972 [NOTICE] switch_loadable_module.c:259 Adding Application 'strftime'
2014-11-13 11:52:15.522060 [NOTICE] switch_loadable_module.c:259 Adding Application 'phrase'
2014-11-13 11:52:15.522189 [NOTICE] switch_loadable_module.c:259 Adding Application 'eval'
2014-11-13 11:52:15.522257 [NOTICE] switch_loadable_module.c:259 Adding Application 'stop'
2014-11-13 11:52:15.522323 [NOTICE] switch_loadable_module.c:259 Adding Application 'set_zombie_exec'
2014-11-13 11:52:15.522406 [NOTICE] switch_loadable_module.c:259 Adding Application 'pre_answer'
2014-11-13 11:52:15.522473 [NOTICE] switch_loadable_module.c:259 Adding Application 'answer'
2014-11-13 11:52:15.522538 [NOTICE] switch_loadable_module.c:259 Adding Application 'wait_for_answer'
2014-11-13 11:52:15.522604 [NOTICE] switch_loadable_module.c:259 Adding Application 'hangup'
2014-11-13 11:52:15.522715 [NOTICE] switch_loadable_module.c:259 Adding Application 'set_name'
2014-11-13 11:52:15.522983 [NOTICE] switch_loadable_module.c:259 Adding Application 'presence'
2014-11-13 11:52:15.523109 [NOTICE] switch_loadable_module.c:259 Adding Application 'log'
2014-11-13 11:52:15.523226 [NOTICE] switch_loadable_module.c:259 Adding Application 'info'
2014-11-13 11:52:15.523429 [NOTICE] switch_loadable_module.c:259 Adding Application 'event'
2014-11-13 11:52:15.523546 [NOTICE] switch_loadable_module.c:259 Adding Application 'sound_test'
2014-11-13 11:52:15.523674 [NOTICE] switch_loadable_module.c:259 Adding Application 'export'
2014-11-13 11:52:15.523834 [NOTICE] switch_loadable_module.c:259 Adding Application 'bridge_export'
2014-11-13 11:52:15.523983 [NOTICE] switch_loadable_module.c:259 Adding Application 'set'
2014-11-13 11:52:15.524053 [NOTICE] switch_loadable_module.c:259 Adding Application 'multiset'
2014-11-13 11:52:15.524121 [NOTICE] switch_loadable_module.c:259 Adding Application 'push'
2014-11-13 11:52:15.524188 [NOTICE] switch_loadable_module.c:259 Adding Application 'unshift'
2014-11-13 11:52:15.524302 [NOTICE] switch_loadable_module.c:259 Adding Application 'set_global'
2014-11-13 11:52:15.524376 [NOTICE] switch_loadable_module.c:259 Adding Application 'set_profile_var'
2014-11-13 11:52:15.524444 [NOTICE] switch_loadable_module.c:259 Adding Application 'unset'
2014-11-13 11:52:15.524511 [NOTICE] switch_loadable_module.c:259 Adding Application 'ring_ready'
2014-11-13 11:52:15.524579 [NOTICE] switch_loadable_module.c:259 Adding Application 'remove_bugs'
2014-11-13 11:52:15.524649 [NOTICE] switch_loadable_module.c:259 Adding Application 'break'
2014-11-13 11:52:15.524827 [NOTICE] switch_loadable_module.c:259 Adding Application 'detect_speech'
2014-11-13 11:52:15.524904 [NOTICE] switch_loadable_module.c:259 Adding Application 'play_and_detect_speech'
2014-11-13 11:52:15.525021 [NOTICE] switch_loadable_module.c:259 Adding Application 'ivr'
2014-11-13 11:52:15.525094 [NOTICE] switch_loadable_module.c:259 Adding Application 'redirect'
2014-11-13 11:52:15.525251 [NOTICE] switch_loadable_module.c:259 Adding Application 'video_refresh'
2014-11-13 11:52:15.525480 [NOTICE] switch_loadable_module.c:259 Adding Application 'send_info'
2014-11-13 11:52:15.525621 [NOTICE] switch_loadable_module.c:259 Adding Application 'jitterbuffer'
2014-11-13 11:52:15.525691 [NOTICE] switch_loadable_module.c:259 Adding Application 'send_display'
2014-11-13 11:52:15.525792 [NOTICE] switch_loadable_module.c:259 Adding Application 'respond'
2014-11-13 11:52:15.525916 [NOTICE] switch_loadable_module.c:259 Adding Application 'deflect'
2014-11-13 11:52:15.526005 [NOTICE] switch_loadable_module.c:259 Adding Application 'recovery_refresh'
2014-11-13 11:52:15.526073 [NOTICE] switch_loadable_module.c:259 Adding Application 'queue_dtmf'
2014-11-13 11:52:15.526187 [NOTICE] switch_loadable_module.c:259 Adding Application 'send_dtmf'
2014-11-13 11:52:15.526256 [NOTICE] switch_loadable_module.c:259 Adding Application 'sched_cancel'
2014-11-13 11:52:15.526323 [NOTICE] switch_loadable_module.c:259 Adding Application 'sched_hangup'
2014-11-13 11:52:15.526437 [NOTICE] switch_loadable_module.c:259 Adding Application 'sched_broadcast'
2014-11-13 11:52:15.526563 [NOTICE] switch_loadable_module.c:259 Adding Application 'sched_transfer'
2014-11-13 11:52:15.526633 [NOTICE] switch_loadable_module.c:259 Adding Application 'execute_extension'
2014-11-13 11:52:15.526700 [NOTICE] switch_loadable_module.c:259 Adding Application 'sched_heartbeat'
2014-11-13 11:52:15.526888 [NOTICE] switch_loadable_module.c:259 Adding Application 'enable_heartbeat'
2014-11-13 11:52:15.527008 [NOTICE] switch_loadable_module.c:259 Adding Application 'media_reset'
2014-11-13 11:52:15.527133 [NOTICE] switch_loadable_module.c:259 Adding Application 'mkdir'
2014-11-13 11:52:15.527202 [NOTICE] switch_loadable_module.c:259 Adding Application 'rename'
2014-11-13 11:52:15.527268 [NOTICE] switch_loadable_module.c:259 Adding Application 'soft_hold'
2014-11-13 11:52:15.527334 [NOTICE] switch_loadable_module.c:259 Adding Application 'bind_meta_app'
2014-11-13 11:52:15.527400 [NOTICE] switch_loadable_module.c:259 Adding Application 'unbind_meta_app'
2014-11-13 11:52:15.527466 [NOTICE] switch_loadable_module.c:259 Adding Application 'block_dfmf'
2014-11-13 11:52:15.527545 [NOTICE] switch_loadable_module.c:259 Adding Application 'unblock_dtmf'
2014-11-13 11:52:15.527611 [NOTICE] switch_loadable_module.c:259 Adding Application 'intercept'
2014-11-13 11:52:15.527678 [NOTICE] switch_loadable_module.c:259 Adding Application 'eavesdrop'
2014-11-13 11:52:15.527765 [NOTICE] switch_loadable_module.c:259 Adding Application 'three_way'
2014-11-13 11:52:15.527901 [NOTICE] switch_loadable_module.c:259 Adding Application 'set_user'
2014-11-13 11:52:15.528084 [NOTICE] switch_loadable_module.c:259 Adding Application 'stop_dtmf'
2014-11-13 11:52:15.528154 [NOTICE] switch_loadable_module.c:259 Adding Application 'start_dtmf'
2014-11-13 11:52:15.528221 [NOTICE] switch_loadable_module.c:259 Adding Application 'stop_dtmf_generate'
2014-11-13 11:52:15.528289 [NOTICE] switch_loadable_module.c:259 Adding Application 'start_dtmf_generate'
2014-11-13 11:52:15.528357 [NOTICE] switch_loadable_module.c:259 Adding Application 'stop_tone_detect'
2014-11-13 11:52:15.528470 [NOTICE] switch_loadable_module.c:259 Adding Application 'fax_detect'
2014-11-13 11:52:15.528597 [NOTICE] switch_loadable_module.c:259 Adding Application 'tone_detect'
2014-11-13 11:52:15.528712 [NOTICE] switch_loadable_module.c:259 Adding Application 'echo'
2014-11-13 11:52:15.528813 [NOTICE] switch_loadable_module.c:259 Adding Application 'park'
2014-11-13 11:52:15.528885 [NOTICE] switch_loadable_module.c:259 Adding Application 'park_state'
2014-11-13 11:52:15.528953 [NOTICE] switch_loadable_module.c:259 Adding Application 'gentones'
2014-11-13 11:52:15.529145 [NOTICE] switch_loadable_module.c:259 Adding Application 'playback'
2014-11-13 11:52:15.529268 [NOTICE] switch_loadable_module.c:259 Adding Application 'endless_playback'
2014-11-13 11:52:15.529364 [NOTICE] switch_loadable_module.c:259 Adding Application 'att_xfer'
2014-11-13 11:52:15.529490 [NOTICE] switch_loadable_module.c:259 Adding Application 'read'
2014-11-13 11:52:15.529649 [NOTICE] switch_loadable_module.c:259 Adding Application 'play_and_get_digits'
2014-11-13 11:52:15.529765 [NOTICE] switch_loadable_module.c:259 Adding Application 'stop_record_session'
2014-11-13 11:52:15.529855 [NOTICE] switch_loadable_module.c:259 Adding Application 'record_session'
2014-11-13 11:52:15.529927 [NOTICE] switch_loadable_module.c:259 Adding Application 'record_session_mask'
2014-11-13 11:52:15.530050 [NOTICE] switch_loadable_module.c:259 Adding Application 'record_session_unmask'
2014-11-13 11:52:15.530169 [NOTICE] switch_loadable_module.c:259 Adding Application 'record'
2014-11-13 11:52:15.530239 [NOTICE] switch_loadable_module.c:259 Adding Application 'preprocess'
2014-11-13 11:52:15.530353 [NOTICE] switch_loadable_module.c:259 Adding Application 'stop_displace_session'
2014-11-13 11:52:15.530436 [NOTICE] switch_loadable_module.c:259 Adding Application 'displace_session'
2014-11-13 11:52:15.530505 [NOTICE] switch_loadable_module.c:259 Adding Application 'speak'
2014-11-13 11:52:15.530575 [NOTICE] switch_loadable_module.c:259 Adding Application 'clear_speech_cache'
2014-11-13 11:52:15.530728 [NOTICE] switch_loadable_module.c:259 Adding Application 'bridge'
2014-11-13 11:52:15.530885 [NOTICE] switch_loadable_module.c:259 Adding Application 'system'
2014-11-13 11:52:15.530970 [NOTICE] switch_loadable_module.c:259 Adding Application 'bgsystem'
2014-11-13 11:52:15.531128 [NOTICE] switch_loadable_module.c:259 Adding Application 'say'
2014-11-13 11:52:15.531283 [NOTICE] switch_loadable_module.c:259 Adding Application 'wait_for_silence'
2014-11-13 11:52:15.531396 [NOTICE] switch_loadable_module.c:259 Adding Application 'session_loglevel'
2014-11-13 11:52:15.531464 [NOTICE] switch_loadable_module.c:259 Adding Application 'limit'
2014-11-13 11:52:15.531575 [NOTICE] switch_loadable_module.c:259 Adding Application 'limit_hash'
2014-11-13 11:52:15.531654 [NOTICE] switch_loadable_module.c:259 Adding Application 'limit_execute'
2014-11-13 11:52:15.531721 [NOTICE] switch_loadable_module.c:259 Adding Application 'limit_hash_execute'
2014-11-13 11:52:15.531854 [NOTICE] switch_loadable_module.c:259 Adding Application 'pickup'
2014-11-13 11:52:15.531924 [NOTICE] switch_loadable_module.c:305 Adding API Function 'strepoch'
2014-11-13 11:52:15.531993 [NOTICE] switch_loadable_module.c:305 Adding API Function 'page'
2014-11-13 11:52:15.532073 [NOTICE] switch_loadable_module.c:305 Adding API Function 'strmicroepoch'
2014-11-13 11:52:15.532141 [NOTICE] switch_loadable_module.c:305 Adding API Function 'chat'
2014-11-13 11:52:15.532209 [NOTICE] switch_loadable_module.c:305 Adding API Function 'strftime'
2014-11-13 11:52:15.532277 [NOTICE] switch_loadable_module.c:305 Adding API Function 'presence'
2014-11-13 11:52:15.532347 [NOTICE] switch_loadable_module.c:332 Adding File Format 'file_string'
2014-11-13 11:52:15.532565 [NOTICE] switch_loadable_module.c:417 Adding Chat interface 'event'
2014-11-13 11:52:15.532635 [NOTICE] switch_loadable_module.c:417 Adding Chat interface 'api'
2014-11-13 11:52:15.534728 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [mod_expr]
2014-11-13 11:52:15.534870 [NOTICE] switch_loadable_module.c:305 Adding API Function 'expr'
2014-11-13 11:52:15.543375 [INFO] switch_core_sqldb.c:1449 fifo Starting SQL thread.
2014-11-13 11:52:15.691626 [INFO] mod_fifo.c:4302 cool_fifo@192.168.222.10 configured
2014-11-13 11:52:15.703730 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [mod_fifo]
2014-11-13 11:52:15.703808 [NOTICE] switch_loadable_module.c:259 Adding Application 'fifo'
2014-11-13 11:52:15.703924 [NOTICE] switch_loadable_module.c:259 Adding Application 'fifo_track_call'
2014-11-13 11:52:15.704200 [NOTICE] switch_loadable_module.c:305 Adding API Function 'fifo'
2014-11-13 11:52:15.704373 [NOTICE] switch_loadable_module.c:305 Adding API Function 'fifo_member'
2014-11-13 11:52:15.704687 [NOTICE] switch_loadable_module.c:305 Adding API Function 'fifo_add_outbound'
2014-11-13 11:52:15.704947 [NOTICE] switch_loadable_module.c:305 Adding API Function 'fifo_check_bridge'
2014-11-13 11:52:15.708691 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [mod_hash]
2014-11-13 11:52:15.708771 [NOTICE] switch_loadable_module.c:259 Adding Application 'hash'
2014-11-13 11:52:15.709283 [NOTICE] switch_loadable_module.c:305 Adding API Function 'hash'
2014-11-13 11:52:15.709603 [NOTICE] switch_loadable_module.c:305 Adding API Function 'hash_dump'
2014-11-13 11:52:15.709970 [NOTICE] switch_loadable_module.c:305 Adding API Function 'hash_remote'
2014-11-13 11:52:15.710294 [NOTICE] switch_loadable_module.c:490 Adding Limit interface 'hash'
2014-11-13 11:52:15.720419 [INFO] mod_voicemail.c:784 Added Profile default
2014-11-13 11:52:15.720623 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [mod_voicemail]
2014-11-13 11:52:15.720709 [NOTICE] switch_loadable_module.c:259 Adding Application 'voicemail'
2014-11-13 11:52:15.720984 [NOTICE] switch_loadable_module.c:305 Adding API Function 'voicemail'
2014-11-13 11:52:15.721210 [NOTICE] switch_loadable_module.c:305 Adding API Function 'voicemail_inject'
2014-11-13 11:52:15.721431 [NOTICE] switch_loadable_module.c:305 Adding API Function 'vm_inject'
2014-11-13 11:52:15.721640 [NOTICE] switch_loadable_module.c:305 Adding API Function 'vm_boxcount'
2014-11-13 11:52:15.721958 [NOTICE] switch_loadable_module.c:305 Adding API Function 'vm_prefs'
2014-11-13 11:52:15.722178 [NOTICE] switch_loadable_module.c:305 Adding API Function 'vm_delete'
2014-11-13 11:52:15.722395 [NOTICE] switch_loadable_module.c:305 Adding API Function 'vm_read'
2014-11-13 11:52:15.722599 [NOTICE] switch_loadable_module.c:305 Adding API Function 'vm_list'
2014-11-13 11:52:15.722803 [NOTICE] switch_loadable_module.c:305 Adding API Function 'vm_fsdb_auth_login'
2014-11-13 11:52:15.723472 [NOTICE] switch_loadable_module.c:305 Adding API Function 'vm_fsdb_msg_count'
2014-11-13 11:52:15.723566 [NOTICE] switch_loadable_module.c:305 Adding API Function 'vm_fsdb_msg_list'
2014-11-13 11:52:15.723639 [NOTICE] switch_loadable_module.c:305 Adding API Function 'vm_fsdb_msg_get'
2014-11-13 11:52:15.723710 [NOTICE] switch_loadable_module.c:305 Adding API Function 'vm_fsdb_msg_delete'
2014-11-13 11:52:15.723780 [NOTICE] switch_loadable_module.c:305 Adding API Function 'vm_fsdb_msg_undelete'
2014-11-13 11:52:15.723851 [NOTICE] switch_loadable_module.c:305 Adding API Function 'vm_fsdb_msg_email'
2014-11-13 11:52:15.723965 [NOTICE] switch_loadable_module.c:305 Adding API Function 'vm_fsdb_msg_purge'
2014-11-13 11:52:15.724040 [NOTICE] switch_loadable_module.c:305 Adding API Function 'vm_fsdb_msg_save'
2014-11-13 11:52:15.724110 [NOTICE] switch_loadable_module.c:305 Adding API Function 'vm_fsdb_msg_forward'
2014-11-13 11:52:15.724177 [NOTICE] switch_loadable_module.c:305 Adding API Function 'vm_fsdb_pref_greeting_set'
2014-11-13 11:52:15.724245 [NOTICE] switch_loadable_module.c:305 Adding API Function 'vm_fsdb_pref_greeting_get'
2014-11-13 11:52:15.724325 [NOTICE] switch_loadable_module.c:305 Adding API Function 'vm_fsdb_pref_recname_set'
2014-11-13 11:52:15.724393 [NOTICE] switch_loadable_module.c:305 Adding API Function 'vm_fsdb_pref_password_set'
2014-11-13 11:52:15.725922 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [mod_esf]
2014-11-13 11:52:15.726016 [NOTICE] switch_loadable_module.c:259 Adding Application 'esf_page_group'
2014-11-13 11:52:15.755464 [CRIT] switch_loadable_module.c:1383 Error Loading module /usr/local/lib/fs_mod/mod_fsv.so
**File not found**
2014-11-13 11:52:15.756691 [CRIT] switch_loadable_module.c:1383 Error Loading module /usr/local/lib/fs_mod/mod_cluechoo.so
**File not found**
2014-11-13 11:52:15.758134 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [mod_valet_parking]
2014-11-13 11:52:15.758290 [NOTICE] switch_loadable_module.c:259 Adding Application 'valet_park'
2014-11-13 11:52:15.758401 [NOTICE] switch_loadable_module.c:305 Adding API Function 'valet_info'
2014-11-13 11:52:15.759678 [CRIT] switch_loadable_module.c:1383 Error Loading module /usr/local/lib/fs_mod/mod_httapi.so
**File not found**
2014-11-13 11:52:15.761053 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [mod_dialplan_xml]
2014-11-13 11:52:15.761136 [NOTICE] switch_loadable_module.c:217 Adding Dialplan 'XML'
2014-11-13 11:52:15.762357 [CRIT] switch_loadable_module.c:1383 Error Loading module /usr/local/lib/fs_mod/mod_dialplan_asterisk.so
**File not found**
2014-11-13 11:52:15.854997 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [mod_spandsp]
2014-11-13 11:52:15.855104 [NOTICE] switch_loadable_module.c:147 Adding Endpoint 'modem'
2014-11-13 11:52:15.855219 [NOTICE] switch_loadable_module.c:189 Adding Codec DVI4 6 ADPCM (IMA) 16000hz 10ms 64000bps
2014-11-13 11:52:15.855259 [NOTICE] switch_loadable_module.c:189 Adding Codec DVI4 6 ADPCM (IMA) 16000hz 20ms 64000bps
2014-11-13 11:52:15.855280 [NOTICE] switch_loadable_module.c:189 Adding Codec DVI4 6 ADPCM (IMA) 16000hz 30ms 64000bps
2014-11-13 11:52:15.855301 [NOTICE] switch_loadable_module.c:189 Adding Codec DVI4 6 ADPCM (IMA) 16000hz 40ms 64000bps
2014-11-13 11:52:15.855322 [NOTICE] switch_loadable_module.c:189 Adding Codec DVI4 6 ADPCM (IMA) 16000hz 50ms 64000bps
2014-11-13 11:52:15.855342 [NOTICE] switch_loadable_module.c:189 Adding Codec DVI4 6 ADPCM (IMA) 16000hz 60ms 64000bps
2014-11-13 11:52:15.855362 [NOTICE] switch_loadable_module.c:189 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 10ms 32000bps
2014-11-13 11:52:15.855383 [NOTICE] switch_loadable_module.c:189 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 20ms 32000bps
2014-11-13 11:52:15.855403 [NOTICE] switch_loadable_module.c:189 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 30ms 32000bps
2014-11-13 11:52:15.855423 [NOTICE] switch_loadable_module.c:189 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 40ms 32000bps
2014-11-13 11:52:15.855444 [NOTICE] switch_loadable_module.c:189 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 50ms 32000bps
2014-11-13 11:52:15.855465 [NOTICE] switch_loadable_module.c:189 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 60ms 32000bps
2014-11-13 11:52:15.855486 [NOTICE] switch_loadable_module.c:189 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 70ms 32000bps
2014-11-13 11:52:15.855506 [NOTICE] switch_loadable_module.c:189 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 80ms 32000bps
2014-11-13 11:52:15.855527 [NOTICE] switch_loadable_module.c:189 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 90ms 32000bps
2014-11-13 11:52:15.855548 [NOTICE] switch_loadable_module.c:189 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 100ms 32000bps
2014-11-13 11:52:15.855568 [NOTICE] switch_loadable_module.c:189 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 110ms 32000bps
2014-11-13 11:52:15.855588 [NOTICE] switch_loadable_module.c:189 Adding Codec DVI4 5 ADPCM (IMA) 8000hz 120ms 32000bps
2014-11-13 11:52:15.856018 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 10ms 16000bps
2014-11-13 11:52:15.856099 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 20ms 16000bps
2014-11-13 11:52:15.856129 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 30ms 16000bps
2014-11-13 11:52:15.856152 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 40ms 16000bps
2014-11-13 11:52:15.856173 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 50ms 16000bps
2014-11-13 11:52:15.856195 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 60ms 16000bps
2014-11-13 11:52:15.856218 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 70ms 16000bps
2014-11-13 11:52:15.856240 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 80ms 16000bps
2014-11-13 11:52:15.856261 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 90ms 16000bps
2014-11-13 11:52:15.856283 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 100ms 16000bps
2014-11-13 11:52:15.856306 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 110ms 16000bps
2014-11-13 11:52:15.856328 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 120ms 16000bps
2014-11-13 11:52:15.856540 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-16 124 G.726 16k 8000hz 10ms 16000bps
2014-11-13 11:52:15.856565 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-16 124 G.726 16k 8000hz 20ms 16000bps
2014-11-13 11:52:15.856587 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-16 124 G.726 16k 8000hz 30ms 16000bps
2014-11-13 11:52:15.856608 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-16 124 G.726 16k 8000hz 40ms 16000bps
2014-11-13 11:52:15.856630 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-16 124 G.726 16k 8000hz 50ms 16000bps
2014-11-13 11:52:15.856650 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-16 124 G.726 16k 8000hz 60ms 16000bps
2014-11-13 11:52:15.856671 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-16 124 G.726 16k 8000hz 70ms 16000bps
2014-11-13 11:52:15.856691 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-16 124 G.726 16k 8000hz 80ms 16000bps
2014-11-13 11:52:15.856712 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-16 124 G.726 16k 8000hz 90ms 16000bps
2014-11-13 11:52:15.856733 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-16 124 G.726 16k 8000hz 100ms 16000bps
2014-11-13 11:52:15.856755 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-16 124 G.726 16k 8000hz 110ms 16000bps
2014-11-13 11:52:15.856776 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-16 124 G.726 16k 8000hz 120ms 16000bps
2014-11-13 11:52:15.856989 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 10ms 24000bps
2014-11-13 11:52:15.857013 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 20ms 24000bps
2014-11-13 11:52:15.857035 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 30ms 24000bps
2014-11-13 11:52:15.857087 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 40ms 24000bps
2014-11-13 11:52:15.857111 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 50ms 24000bps
2014-11-13 11:52:15.857132 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 60ms 24000bps
2014-11-13 11:52:15.857154 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 70ms 24000bps
2014-11-13 11:52:15.857175 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 80ms 24000bps
2014-11-13 11:52:15.857196 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 90ms 24000bps
2014-11-13 11:52:15.857218 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 100ms 24000bps
2014-11-13 11:52:15.857240 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 110ms 24000bps
2014-11-13 11:52:15.857262 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 120ms 24000bps
2014-11-13 11:52:15.857468 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-24 123 G.726 24k 8000hz 10ms 24000bps
2014-11-13 11:52:15.857492 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-24 123 G.726 24k 8000hz 20ms 24000bps
2014-11-13 11:52:15.857513 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-24 123 G.726 24k 8000hz 30ms 24000bps
2014-11-13 11:52:15.857534 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-24 123 G.726 24k 8000hz 40ms 24000bps
2014-11-13 11:52:15.857554 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-24 123 G.726 24k 8000hz 50ms 24000bps
2014-11-13 11:52:15.857574 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-24 123 G.726 24k 8000hz 60ms 24000bps
2014-11-13 11:52:15.857594 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-24 123 G.726 24k 8000hz 70ms 24000bps
2014-11-13 11:52:15.857614 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-24 123 G.726 24k 8000hz 80ms 24000bps
2014-11-13 11:52:15.857634 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-24 123 G.726 24k 8000hz 90ms 24000bps
2014-11-13 11:52:15.857655 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-24 123 G.726 24k 8000hz 100ms 24000bps
2014-11-13 11:52:15.857675 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-24 123 G.726 24k 8000hz 110ms 24000bps
2014-11-13 11:52:15.857695 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-24 123 G.726 24k 8000hz 120ms 24000bps
2014-11-13 11:52:15.857892 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 10ms 32000bps
2014-11-13 11:52:15.857918 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 20ms 32000bps
2014-11-13 11:52:15.857939 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 30ms 32000bps
2014-11-13 11:52:15.857961 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 40ms 32000bps
2014-11-13 11:52:15.857982 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 50ms 32000bps
2014-11-13 11:52:15.858004 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 60ms 32000bps
2014-11-13 11:52:15.858037 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 70ms 32000bps
2014-11-13 11:52:15.858176 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 80ms 32000bps
2014-11-13 11:52:15.858203 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 90ms 32000bps
2014-11-13 11:52:15.858224 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 100ms 32000bps
2014-11-13 11:52:15.858247 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 110ms 32000bps
2014-11-13 11:52:15.858269 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 120ms 32000bps
2014-11-13 11:52:15.858480 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-32 122 G.726 32k 8000hz 10ms 32000bps
2014-11-13 11:52:15.858506 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-32 122 G.726 32k 8000hz 20ms 32000bps
2014-11-13 11:52:15.858535 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-32 122 G.726 32k 8000hz 30ms 32000bps
2014-11-13 11:52:15.858570 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-32 122 G.726 32k 8000hz 40ms 32000bps
2014-11-13 11:52:15.858594 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-32 122 G.726 32k 8000hz 50ms 32000bps
2014-11-13 11:52:15.858616 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-32 122 G.726 32k 8000hz 60ms 32000bps
2014-11-13 11:52:15.858638 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-32 122 G.726 32k 8000hz 70ms 32000bps
2014-11-13 11:52:15.858659 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-32 122 G.726 32k 8000hz 80ms 32000bps
2014-11-13 11:52:15.858732 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-32 122 G.726 32k 8000hz 90ms 32000bps
2014-11-13 11:52:15.858755 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-32 122 G.726 32k 8000hz 100ms 32000bps
2014-11-13 11:52:15.858776 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-32 122 G.726 32k 8000hz 110ms 32000bps
2014-11-13 11:52:15.858797 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-32 122 G.726 32k 8000hz 120ms 32000bps
2014-11-13 11:52:15.859082 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 10ms 40000bps
2014-11-13 11:52:15.859125 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 20ms 40000bps
2014-11-13 11:52:15.859149 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 30ms 40000bps
2014-11-13 11:52:15.859170 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 40ms 40000bps
2014-11-13 11:52:15.859192 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 50ms 40000bps
2014-11-13 11:52:15.859214 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 60ms 40000bps
2014-11-13 11:52:15.859235 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 70ms 40000bps
2014-11-13 11:52:15.859257 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 80ms 40000bps
2014-11-13 11:52:15.859278 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 90ms 40000bps
2014-11-13 11:52:15.859301 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 100ms 40000bps
2014-11-13 11:52:15.859375 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 110ms 40000bps
2014-11-13 11:52:15.859399 [NOTICE] switch_loadable_module.c:189 Adding Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 120ms 40000bps
2014-11-13 11:52:15.859668 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-40 121 G.726 40k 8000hz 10ms 40000bps
2014-11-13 11:52:15.859694 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-40 121 G.726 40k 8000hz 20ms 40000bps
2014-11-13 11:52:15.859716 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-40 121 G.726 40k 8000hz 30ms 40000bps
2014-11-13 11:52:15.859737 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-40 121 G.726 40k 8000hz 40ms 40000bps
2014-11-13 11:52:15.859757 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-40 121 G.726 40k 8000hz 50ms 40000bps
2014-11-13 11:52:15.859777 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-40 121 G.726 40k 8000hz 60ms 40000bps
2014-11-13 11:52:15.859798 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-40 121 G.726 40k 8000hz 70ms 40000bps
2014-11-13 11:52:15.859818 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-40 121 G.726 40k 8000hz 80ms 40000bps
2014-11-13 11:52:15.859839 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-40 121 G.726 40k 8000hz 90ms 40000bps
2014-11-13 11:52:15.859860 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-40 121 G.726 40k 8000hz 100ms 40000bps
2014-11-13 11:52:15.859881 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-40 121 G.726 40k 8000hz 110ms 40000bps
2014-11-13 11:52:15.859901 [NOTICE] switch_loadable_module.c:189 Adding Codec G726-40 121 G.726 40k 8000hz 120ms 40000bps
2014-11-13 11:52:15.860131 [NOTICE] switch_loadable_module.c:189 Adding Codec G722 9 G.722 16000hz 10ms 64000bps
2014-11-13 11:52:15.860163 [NOTICE] switch_loadable_module.c:189 Adding Codec G722 9 G.722 16000hz 20ms 64000bps
2014-11-13 11:52:15.860184 [NOTICE] switch_loadable_module.c:189 Adding Codec G722 9 G.722 16000hz 30ms 64000bps
2014-11-13 11:52:15.860206 [NOTICE] switch_loadable_module.c:189 Adding Codec G722 9 G.722 16000hz 40ms 64000bps
2014-11-13 11:52:15.860228 [NOTICE] switch_loadable_module.c:189 Adding Codec G722 9 G.722 16000hz 50ms 64000bps
2014-11-13 11:52:15.860248 [NOTICE] switch_loadable_module.c:189 Adding Codec G722 9 G.722 16000hz 60ms 64000bps
2014-11-13 11:52:15.860452 [NOTICE] switch_loadable_module.c:189 Adding Codec GSM 3 GSM 8000hz 20ms 13200bps
2014-11-13 11:52:15.860585 [NOTICE] switch_loadable_module.c:189 Adding Codec GSM 3 GSM 8000hz 40ms 13200bps
2014-11-13 11:52:15.860617 [NOTICE] switch_loadable_module.c:189 Adding Codec GSM 3 GSM 8000hz 60ms 13200bps
2014-11-13 11:52:15.860639 [NOTICE] switch_loadable_module.c:189 Adding Codec GSM 3 GSM 8000hz 80ms 13200bps
2014-11-13 11:52:15.860660 [NOTICE] switch_loadable_module.c:189 Adding Codec GSM 3 GSM 8000hz 100ms 13200bps
2014-11-13 11:52:15.860681 [NOTICE] switch_loadable_module.c:189 Adding Codec GSM 3 GSM 8000hz 120ms 13200bps
2014-11-13 11:52:15.860902 [NOTICE] switch_loadable_module.c:189 Adding Codec LPC 7 LPC-10 8000hz 90ms 2400bps
2014-11-13 11:52:15.861198 [NOTICE] switch_loadable_module.c:259 Adding Application 't38_gateway'
2014-11-13 11:52:15.861407 [NOTICE] switch_loadable_module.c:259 Adding Application 'rxfax'
2014-11-13 11:52:15.861609 [NOTICE] switch_loadable_module.c:259 Adding Application 'txfax'
2014-11-13 11:52:15.861879 [NOTICE] switch_loadable_module.c:259 Adding Application 'spandsp_stop_dtmf'
2014-11-13 11:52:15.862126 [NOTICE] switch_loadable_module.c:259 Adding Application 'spandsp_start_dtmf'
2014-11-13 11:52:15.862341 [NOTICE] switch_loadable_module.c:259 Adding Application 'spandsp_stop_inject_tdd'
2014-11-13 11:52:15.862542 [NOTICE] switch_loadable_module.c:259 Adding Application 'spandsp_inject_tdd'
2014-11-13 11:52:15.862755 [NOTICE] switch_loadable_module.c:259 Adding Application 'spandsp_stop_detect_tdd'
2014-11-13 11:52:15.862955 [NOTICE] switch_loadable_module.c:259 Adding Application 'spandsp_detect_tdd'
2014-11-13 11:52:15.863258 [NOTICE] switch_loadable_module.c:259 Adding Application 'spandsp_send_tdd'
2014-11-13 11:52:15.863469 [NOTICE] switch_loadable_module.c:259 Adding Application 'spandsp_start_fax_detect'
2014-11-13 11:52:15.863745 [NOTICE] switch_loadable_module.c:259 Adding Application 'spandsp_stop_fax_detect'
2014-11-13 11:52:15.863952 [NOTICE] switch_loadable_module.c:259 Adding Application 'start_tone_detect'
2014-11-13 11:52:15.864265 [NOTICE] switch_loadable_module.c:259 Adding Application 'stop_tone_detect'
2014-11-13 11:52:15.864494 [NOTICE] switch_loadable_module.c:305 Adding API Function 'start_tone_detect'
2014-11-13 11:52:15.864755 [NOTICE] switch_loadable_module.c:305 Adding API Function 'stop_tone_detect'
2014-11-13 11:52:15.864959 [NOTICE] switch_loadable_module.c:305 Adding API Function 'start_tdd_detect'
2014-11-13 11:52:15.865199 [NOTICE] switch_loadable_module.c:305 Adding API Function 'stop_tdd_detect'
2014-11-13 11:52:15.865418 [NOTICE] switch_loadable_module.c:305 Adding API Function 'uuid_send_tdd'
2014-11-13 11:52:15.866970 [CRIT] switch_loadable_module.c:1383 Error Loading module /usr/local/lib/fs_mod/mod_g723_1.so
**File not found**
2014-11-13 11:52:15.868238 [CRIT] switch_loadable_module.c:1383 Error Loading module /usr/local/lib/fs_mod/mod_g729.so
**File not found**
2014-11-13 11:52:15.869838 [CRIT] switch_loadable_module.c:1383 Error Loading module /usr/local/lib/fs_mod/mod_amr.so
**File not found**
2014-11-13 11:52:15.871452 [CRIT] switch_loadable_module.c:1383 Error Loading module /usr/local/lib/fs_mod/mod_speex.so
**File not found**
2014-11-13 11:52:15.872686 [CRIT] switch_loadable_module.c:1383 Error Loading module /usr/local/lib/fs_mod/mod_h26x.so
**File not found**
2014-11-13 11:52:15.875230 [CRIT] switch_loadable_module.c:1383 Error Loading module /usr/local/lib/fs_mod/mod_vp8.so
**File not found**
2014-11-13 11:52:15.883591 [INFO] mod_sndfile.c:367
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")
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")
================================================================================
2014-11-13 11:52:15.884282 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [mod_sndfile]
2014-11-13 11:52:15.884363 [NOTICE] switch_loadable_module.c:332 Adding File Format 'aiff'
2014-11-13 11:52:15.884611 [NOTICE] switch_loadable_module.c:332 Adding File Format 'au'
2014-11-13 11:52:15.884812 [NOTICE] switch_loadable_module.c:332 Adding File Format 'avr'
2014-11-13 11:52:15.885056 [NOTICE] switch_loadable_module.c:332 Adding File Format 'caf'
2014-11-13 11:52:15.885316 [NOTICE] switch_loadable_module.c:332 Adding File Format 'flac'
2014-11-13 11:52:15.885655 [NOTICE] switch_loadable_module.c:332 Adding File Format 'htk'
2014-11-13 11:52:15.885854 [NOTICE] switch_loadable_module.c:332 Adding File Format 'iff'
2014-11-13 11:52:15.886214 [NOTICE] switch_loadable_module.c:332 Adding File Format 'mat'
2014-11-13 11:52:15.886428 [NOTICE] switch_loadable_module.c:332 Adding File Format 'mpc'
2014-11-13 11:52:15.886623 [NOTICE] switch_loadable_module.c:332 Adding File Format 'oga'
2014-11-13 11:52:15.886820 [NOTICE] switch_loadable_module.c:332 Adding File Format 'paf'
2014-11-13 11:52:15.887016 [NOTICE] switch_loadable_module.c:332 Adding File Format 'pvf'
2014-11-13 11:52:15.887399 [NOTICE] switch_loadable_module.c:332 Adding File Format 'raw'
2014-11-13 11:52:15.887599 [NOTICE] switch_loadable_module.c:332 Adding File Format 'rf64'
2014-11-13 11:52:15.887797 [NOTICE] switch_loadable_module.c:332 Adding File Format 'sd2'
2014-11-13 11:52:15.887996 [NOTICE] switch_loadable_module.c:332 Adding File Format 'sds'
2014-11-13 11:52:15.888253 [NOTICE] switch_loadable_module.c:332 Adding File Format 'sf'
2014-11-13 11:52:15.888452 [NOTICE] switch_loadable_module.c:332 Adding File Format 'voc'
2014-11-13 11:52:15.888649 [NOTICE] switch_loadable_module.c:332 Adding File Format 'w64'
2014-11-13 11:52:15.888845 [NOTICE] switch_loadable_module.c:332 Adding File Format 'wav'
2014-11-13 11:52:15.889254 [NOTICE] switch_loadable_module.c:332 Adding File Format 'wve'
2014-11-13 11:52:15.889471 [NOTICE] switch_loadable_module.c:332 Adding File Format 'xi'
2014-11-13 11:52:15.889670 [NOTICE] switch_loadable_module.c:332 Adding File Format 'r8'
2014-11-13 11:52:15.889869 [NOTICE] switch_loadable_module.c:332 Adding File Format 'r16'
2014-11-13 11:52:15.890121 [NOTICE] switch_loadable_module.c:332 Adding File Format 'r24'
2014-11-13 11:52:15.890332 [NOTICE] switch_loadable_module.c:332 Adding File Format 'r32'
2014-11-13 11:52:15.890531 [NOTICE] switch_loadable_module.c:332 Adding File Format 'gsm'
2014-11-13 11:52:15.890728 [NOTICE] switch_loadable_module.c:332 Adding File Format 'ul'
2014-11-13 11:52:15.890939 [NOTICE] switch_loadable_module.c:332 Adding File Format 'ulaw'
2014-11-13 11:52:15.891176 [NOTICE] switch_loadable_module.c:332 Adding File Format 'al'
2014-11-13 11:52:15.891380 [NOTICE] switch_loadable_module.c:332 Adding File Format 'alaw'
2014-11-13 11:52:15.891645 [NOTICE] switch_loadable_module.c:332 Adding File Format 'adpcm'
2014-11-13 11:52:15.891859 [NOTICE] switch_loadable_module.c:332 Adding File Format 'vox'
2014-11-13 11:52:15.893972 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [mod_native_file]
2014-11-13 11:52:15.894190 [NOTICE] switch_loadable_module.c:332 Adding File Format 'PROXY-VID'
2014-11-13 11:52:15.894413 [NOTICE] switch_loadable_module.c:332 Adding File Format 'L16'
2014-11-13 11:52:15.894666 [NOTICE] switch_loadable_module.c:332 Adding File Format 'PCMU'
2014-11-13 11:52:15.894968 [NOTICE] switch_loadable_module.c:332 Adding File Format 'G726-40'
2014-11-13 11:52:15.895208 [NOTICE] switch_loadable_module.c:332 Adding File Format 'DVI4'
2014-11-13 11:52:15.895409 [NOTICE] switch_loadable_module.c:332 Adding File Format 'G726-32'
2014-11-13 11:52:15.895605 [NOTICE] switch_loadable_module.c:332 Adding File Format 'G726-24'
2014-11-13 11:52:15.895813 [NOTICE] switch_loadable_module.c:332 Adding File Format 'G726-16'
2014-11-13 11:52:15.896009 [NOTICE] switch_loadable_module.c:332 Adding File Format 'PCMA'
2014-11-13 11:52:15.896297 [NOTICE] switch_loadable_module.c:332 Adding File Format 'G722'
2014-11-13 11:52:15.896424 [NOTICE] switch_loadable_module.c:332 Adding File Format 'PROXY'
2014-11-13 11:52:15.896550 [NOTICE] switch_loadable_module.c:332 Adding File Format 'AAL2-G726-40'
2014-11-13 11:52:15.896713 [NOTICE] switch_loadable_module.c:332 Adding File Format 'AAL2-G726-32'
2014-11-13 11:52:15.896835 [NOTICE] switch_loadable_module.c:332 Adding File Format 'AAL2-G726-24'
2014-11-13 11:52:15.896953 [NOTICE] switch_loadable_module.c:332 Adding File Format 'GSM'
2014-11-13 11:52:15.897158 [NOTICE] switch_loadable_module.c:332 Adding File Format 'AAL2-G726-16'
2014-11-13 11:52:15.897284 [NOTICE] switch_loadable_module.c:332 Adding File Format 'LPC'
2014-11-13 11:52:15.898781 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [mod_local_stream]
2014-11-13 11:52:15.898885 [NOTICE] switch_loadable_module.c:305 Adding API Function 'reload_local_stream'
2014-11-13 11:52:15.900820 [CONSOLE] mod_local_stream.c:164 Can't open directory: /usr/local/share/freeswitch/sounds/music/16000
2014-11-13 11:52:15.901330 [CONSOLE] mod_local_stream.c:164 Can't open directory: /usr/local/share/freeswitch/sounds/music/32000
2014-11-13 11:52:15.901546 [NOTICE] switch_loadable_module.c:305 Adding API Function 'stop_local_stream'
2014-11-13 11:52:15.901676 [NOTICE] switch_loadable_module.c:305 Adding API Function 'start_local_stream'
2014-11-13 11:52:15.901798 [NOTICE] switch_loadable_module.c:305 Adding API Function 'show_local_stream'
2014-11-13 11:52:15.901915 [NOTICE] switch_loadable_module.c:332 Adding File Format 'local_stream'
2014-11-13 11:52:15.902895 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [mod_tone_stream]
2014-11-13 11:52:15.902948 [NOTICE] switch_loadable_module.c:332 Adding File Format 'tone_stream'
2014-11-13 11:52:15.903151 [NOTICE] switch_loadable_module.c:332 Adding File Format 'silence_stream'
2014-11-13 11:52:15.903939 [CRIT] switch_loadable_module.c:1383 Error Loading module /usr/local/lib/fs_mod/mod_spidermonkey.so
**File not found**
2014-11-13 11:52:15.908913 [CONSOLE] switch_loadable_module.c:1401 Successfully Loaded [mod_lua]
2014-11-13 11:52:15.908967 [NOTICE] switch_loadable_module.c:217 Adding Dialplan 'LUA'
2014-11-13 11:52:15.909164 [NOTICE] switch_loadable_module.c:259 Adding Application 'lua'
2014-11-13 11:52:15.909284 [NOTICE] switch_loadable_module.c:282 Adding Chat Application 'lua'
2014-11-13 11:52:15.909468 [NOTICE] switch_loadable_module.c:305 Adding API Function 'luarun'
2014-11-13 11:52:15.909590 [NOTICE] switch_loadable_module.c:305 Adding API Function 'lua'
2014-11-13 11:52:15.910530 [CRIT] switch_loadable_module.c:1383 Error Loading module /usr/local/lib/fs_mod/mod_say_en.so
**File not found**
2014-11-13 11:52:15.910577 [CONSOLE] switch_loadable_module.c:124 Starting runtime thread for mod_event_socket
2014-11-13 11:52:15.910854 [CONSOLE] switch_loadable_module.c:124 Starting runtime thread for CORE_SOFTTIMER_MODULE
2014-11-13 11:52:15.911403 [NOTICE] switch_core.c:1225 Created ip list rfc1918.auto default (deny)
2014-11-13 11:52:15.911428 [NOTICE] switch_utils.c:313 Adding 10.0.0.0/8 (allow) [] to list rfc1918.auto
2014-11-13 11:52:15.911435 [NOTICE] switch_utils.c:313 Adding 172.16.0.0/12 (allow) [] to list rfc1918.auto
2014-11-13 11:52:15.911440 [NOTICE] switch_utils.c:313 Adding 192.168.0.0/16 (allow) [] to list rfc1918.auto
2014-11-13 11:52:15.911476 [NOTICE] switch_core.c:1233 Created ip list wan.auto default (allow)
2014-11-13 11:52:15.911482 [NOTICE] switch_utils.c:313 Adding 0.0.0.0/8 (deny) [] to list wan.auto
2014-11-13 11:52:15.911488 [NOTICE] switch_utils.c:313 Adding 10.0.0.0/8 (deny) [] to list wan.auto
2014-11-13 11:52:15.911494 [NOTICE] switch_utils.c:313 Adding 172.16.0.0/12 (deny) [] to list wan.auto
2014-11-13 11:52:15.911500 [NOTICE] switch_utils.c:313 Adding 192.168.0.0/16 (deny) [] to list wan.auto
2014-11-13 11:52:15.911506 [NOTICE] switch_core.c:1242 Created ip list nat.auto default (deny)
2014-11-13 11:52:15.911512 [NOTICE] switch_core.c:1244 Adding 192.168.222.10/255.255.255.0 (deny) to list nat.auto
2014-11-13 11:52:15.911518 [NOTICE] switch_utils.c:313 Adding 10.0.0.0/8 (allow) [] to list nat.auto
2014-11-13 11:52:15.911524 [NOTICE] switch_utils.c:313 Adding 172.16.0.0/12 (allow) [] to list nat.auto
2014-11-13 11:52:15.911530 [NOTICE] switch_utils.c:313 Adding 192.168.0.0/16 (allow) [] to list nat.auto
2014-11-13 11:52:15.911536 [NOTICE] switch_core.c:1253 Created ip list loopback.auto default (deny)
2014-11-13 11:52:15.911542 [NOTICE] switch_utils.c:313 Adding 127.0.0.0/8 (allow) [] to list loopback.auto
2014-11-13 11:52:15.911548 [NOTICE] switch_core.c:1259 Created ip list localnet.auto default (deny)
2014-11-13 11:52:15.911554 [NOTICE] switch_core.c:1262 Adding 192.168.222.10/255.255.255.0 (allow) to list localnet.auto
2014-11-13 11:52:15.911560 [CONSOLE] switch_core.c:1289 Created ip list lan default (allow)
2014-11-13 11:52:15.911566 [NOTICE] switch_utils.c:313 Adding 192.168.42.0/24 (deny) [] to list lan
2014-11-13 11:52:15.911572 [NOTICE] switch_core.c:1358 Adding 192.168.42.0/24 (deny) to list lan
2014-11-13 11:52:15.911578 [NOTICE] switch_utils.c:313 Adding 192.168.42.42/32 (allow) [] to list lan
2014-11-13 11:52:15.911584 [NOTICE] switch_core.c:1358 Adding 192.168.42.42/32 (allow) to list lan
2014-11-13 11:52:15.911590 [CONSOLE] switch_core.c:1289 Created ip list domains default (deny)
2014-11-13 11:52:15.911780 [NOTICE] switch_utils.c:313 Adding 192.0.2.0/24 (allow) [brian@192.168.222.10] to list domains
2014-11-13 11:52:15.913581 [INFO] switch_time.c:475 Clock synchronized to system time.
2014-11-13 11:52:15.913784 [CONSOLE] switch_core.c:2086
.=============================================================.
|   _____              ______        _____ _____ ____ _   _   |
|  |  ___| __ ___  ___/ ___\ \      / /_ _|_   _/ ___| | | |  |
|  | |_ | '__/ _ \/ _ \___ \\ \ /\ / / | |  | || |   | |_| |  |
|  |  _|| | |  __/  __/___) |\ V  V /  | |  | || |___|  _  |  |
|  |_|  |_|  \___|\___|____/  \_/\_/  |___| |_| \____|_| |_|  |
|   _____                                                     |
|  |  ___|___  _ __                                           |
|  | |_  / _ \| '_/                                           |
|  |  _|| (_) | |                                             |
|  |_|   \___/|_|                                             |
|    ____                   ____  _____  ____                 |
|   / __ \ _ __  ___  _ __ | '__\/ ____)|  _ \                |
|  | |  | | '_ \/ _ \| '_ \| | _/\____ \| | ) |               |
|  | |__| | |__/  __/| | | | |__\ ____) | |_) |               |
|   \____/|_|   \___||_| |_|_'__/(_____/|____/                |
|                                                             |
.=============================================================.
|   Porting to OpenBSD by: Ted Bullock                        |
|   Original project by:                                      |
|   Anthony Minessale II, Michael Jerris, Brian West, Others  |
|   FreeSWITCH (http://www.freeswitch.org)                    |
|   Paypal Donations Appreciated: paypal@freeswitch.org       |
|   Brought to you by ClueCon http://www.cluecon.com/         |
.=============================================================.



2014-11-13 11:52:15.913810 [CONSOLE] switch_core.c:2095
FreeSWITCH Version 1.2.x (; For OpenBSD)

FreeSWITCH Started
Max Sessions [1000]
Session Rate [30]
SQL [Enabled]
2014-11-13 11:52:15.913816 [CONSOLE] switch_core.c:2103
[This app Best viewed at 160x60 or more..]

freeswitch@martin.localdomain> shutdown

+OK

2014-11-13 11:55:00.102574 [INFO] switch_core.c:2435 Shutting down
2014-11-13 11:55:00.102574 [CONSOLE] switch_core.c:2547 End existing sessions
2014-11-13 11:55:00.102574 [CONSOLE] switch_core.c:2549 Clean up modules.
2014-11-13 11:55:00.102574 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'reload_local_stream'
2014-11-13 11:55:00.102574 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'stop_local_stream'
2014-11-13 11:55:00.102574 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'start_local_stream'
2014-11-13 11:55:00.102574 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'show_local_stream'
2014-11-13 11:55:00.102574 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'local_stream'
2014-11-13 11:55:00.102574 [CONSOLE] switch_loadable_module.c:1867 Stopping: mod_local_stream
2014-11-13 11:55:00.102574 [NOTICE] switch_event.c:1977 Event Binding deleted for mod_local_stream:SHUTDOWN
2014-11-13 11:55:00.202629 [NOTICE] switch_loadable_module.c:970 Deleting Application 'conference'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:970 Deleting Application 'conference_set_auto_outcall'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'conference'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1177 Deleting Chat interface 'conf'
2014-11-13 11:55:00.223994 [CONSOLE] switch_loadable_module.c:1867 Stopping: mod_conference
2014-11-13 11:55:00.223994 [NOTICE] switch_event.c:1977 Event Binding deleted for mod_conference:PRESENCE_PROBE
2014-11-13 11:55:00.223994 [NOTICE] switch_event.c:1977 Event Binding deleted for mod_conference:CONFERENCE_DATA_QUERY
2014-11-13 11:55:00.223994 [NOTICE] switch_event.c:1977 Event Binding deleted for mod_conference:CALL_SETUP_REQ
2014-11-13 11:55:00.223994 [NOTICE] switch_event.c:408 Subclass reservation deleted for mod_conference.c:conference::maintenance
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:970 Deleting Application 'voicemail'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'voicemail'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'voicemail_inject'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'vm_inject'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'vm_boxcount'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'vm_prefs'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'vm_delete'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'vm_read'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'vm_list'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'vm_fsdb_auth_login'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'vm_fsdb_msg_count'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'vm_fsdb_msg_list'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'vm_fsdb_msg_get'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'vm_fsdb_msg_delete'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'vm_fsdb_msg_undelete'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'vm_fsdb_msg_email'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'vm_fsdb_msg_purge'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'vm_fsdb_msg_save'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'vm_fsdb_msg_forward'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'vm_fsdb_pref_greeting_set'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'vm_fsdb_pref_greeting_get'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'vm_fsdb_pref_recname_set'
2014-11-13 11:55:00.223994 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'vm_fsdb_pref_password_set'
2014-11-13 11:55:00.252108 [CONSOLE] switch_loadable_module.c:1867 Stopping: mod_voicemail
2014-11-13 11:55:00.252108 [NOTICE] switch_event.c:408 Subclass reservation deleted for mod_voicemail.c:vm::maintenance
2014-11-13 11:55:00.252108 [NOTICE] switch_event.c:1977 Event Binding deleted for mod_voicemail:MESSAGE_QUERY
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:884 Deleting Endpoint 'modem'
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec DVI4 6 ADPCM (IMA) 16000hz 10ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec DVI4 6 ADPCM (IMA) 16000hz 20ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec DVI4 6 ADPCM (IMA) 16000hz 30ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec DVI4 6 ADPCM (IMA) 16000hz 40ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec DVI4 6 ADPCM (IMA) 16000hz 50ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec DVI4 6 ADPCM (IMA) 16000hz 60ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec DVI4 5 ADPCM (IMA) 8000hz 10ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec DVI4 5 ADPCM (IMA) 8000hz 20ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec DVI4 5 ADPCM (IMA) 8000hz 30ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec DVI4 5 ADPCM (IMA) 8000hz 40ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec DVI4 5 ADPCM (IMA) 8000hz 50ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec DVI4 5 ADPCM (IMA) 8000hz 60ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec DVI4 5 ADPCM (IMA) 8000hz 70ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec DVI4 5 ADPCM (IMA) 8000hz 80ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec DVI4 5 ADPCM (IMA) 8000hz 90ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec DVI4 5 ADPCM (IMA) 8000hz 100ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec DVI4 5 ADPCM (IMA) 8000hz 110ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec DVI4 5 ADPCM (IMA) 8000hz 120ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 10ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 20ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 30ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 40ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 50ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 60ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 70ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 80ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 90ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 100ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 110ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-16 124 G.726 16k (AAL2) 8000hz 120ms
2014-11-13 11:55:00.252108 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-16 124 G.726 16k 8000hz 10ms
2014-11-13 11:55:00.282735 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-16 124 G.726 16k 8000hz 20ms
2014-11-13 11:55:00.282735 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-16 124 G.726 16k 8000hz 30ms
2014-11-13 11:55:00.282735 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-16 124 G.726 16k 8000hz 40ms
2014-11-13 11:55:00.282735 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-16 124 G.726 16k 8000hz 50ms
2014-11-13 11:55:00.282735 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-16 124 G.726 16k 8000hz 60ms
2014-11-13 11:55:00.282735 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-16 124 G.726 16k 8000hz 70ms
2014-11-13 11:55:00.282735 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-16 124 G.726 16k 8000hz 80ms
2014-11-13 11:55:00.282735 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-16 124 G.726 16k 8000hz 90ms
2014-11-13 11:55:00.282735 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-16 124 G.726 16k 8000hz 100ms
2014-11-13 11:55:00.282735 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-16 124 G.726 16k 8000hz 110ms
2014-11-13 11:55:00.282735 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-16 124 G.726 16k 8000hz 120ms
2014-11-13 11:55:00.282735 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 10ms
2014-11-13 11:55:00.282735 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 20ms
2014-11-13 11:55:00.282735 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 30ms
2014-11-13 11:55:00.282735 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 40ms
2014-11-13 11:55:00.282735 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 50ms
2014-11-13 11:55:00.282735 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 60ms
2014-11-13 11:55:00.282735 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 70ms
2014-11-13 11:55:00.282735 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 80ms
2014-11-13 11:55:00.282735 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 90ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 100ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 110ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-24 123 G.726 24k (AAL2) 8000hz 120ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-24 123 G.726 24k 8000hz 10ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-24 123 G.726 24k 8000hz 20ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-24 123 G.726 24k 8000hz 30ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-24 123 G.726 24k 8000hz 40ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-24 123 G.726 24k 8000hz 50ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-24 123 G.726 24k 8000hz 60ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-24 123 G.726 24k 8000hz 70ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-24 123 G.726 24k 8000hz 80ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-24 123 G.726 24k 8000hz 90ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-24 123 G.726 24k 8000hz 100ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-24 123 G.726 24k 8000hz 110ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-24 123 G.726 24k 8000hz 120ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 10ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 20ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 30ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 40ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 50ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 60ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 70ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 80ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 90ms
2014-11-13 11:55:00.301907 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 100ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 110ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-32 122 G.726 32k (AAL2) 8000hz 120ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-32 122 G.726 32k 8000hz 10ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-32 122 G.726 32k 8000hz 20ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-32 122 G.726 32k 8000hz 30ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-32 122 G.726 32k 8000hz 40ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-32 122 G.726 32k 8000hz 50ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-32 122 G.726 32k 8000hz 60ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-32 122 G.726 32k 8000hz 70ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-32 122 G.726 32k 8000hz 80ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-32 122 G.726 32k 8000hz 90ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-32 122 G.726 32k 8000hz 100ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-32 122 G.726 32k 8000hz 110ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-32 122 G.726 32k 8000hz 120ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 10ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 20ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 30ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 40ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 50ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 60ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 70ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 80ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 90ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 100ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 110ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec AAL2-G726-40 121 G.726 40k (AAL2) 8000hz 120ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-40 121 G.726 40k 8000hz 10ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-40 121 G.726 40k 8000hz 20ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-40 121 G.726 40k 8000hz 30ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-40 121 G.726 40k 8000hz 40ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-40 121 G.726 40k 8000hz 50ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-40 121 G.726 40k 8000hz 60ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-40 121 G.726 40k 8000hz 70ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-40 121 G.726 40k 8000hz 80ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-40 121 G.726 40k 8000hz 90ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-40 121 G.726 40k 8000hz 100ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-40 121 G.726 40k 8000hz 110ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G726-40 121 G.726 40k 8000hz 120ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G722 9 G.722 16000hz 10ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G722 9 G.722 16000hz 20ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G722 9 G.722 16000hz 30ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G722 9 G.722 16000hz 40ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G722 9 G.722 16000hz 50ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec G722 9 G.722 16000hz 60ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec GSM 3 GSM 8000hz 20ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec GSM 3 GSM 8000hz 40ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec GSM 3 GSM 8000hz 60ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec GSM 3 GSM 8000hz 80ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec GSM 3 GSM 8000hz 100ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec GSM 3 GSM 8000hz 120ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:911 Deleting Codec LPC 7 LPC-10 8000hz 90ms
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:970 Deleting Application 't38_gateway'
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:970 Deleting Application 'rxfax'
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:970 Deleting Application 'txfax'
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:970 Deleting Application 'spandsp_stop_dtmf'
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:970 Deleting Application 'spandsp_start_dtmf'
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:970 Deleting Application 'spandsp_stop_inject_tdd'
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:970 Deleting Application 'spandsp_inject_tdd'
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:970 Deleting Application 'spandsp_stop_detect_tdd'
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:970 Deleting Application 'spandsp_detect_tdd'
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:970 Deleting Application 'spandsp_send_tdd'
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:970 Deleting Application 'spandsp_start_fax_detect'
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:970 Deleting Application 'spandsp_stop_fax_detect'
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:970 Deleting Application 'start_tone_detect'
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:970 Deleting Application 'stop_tone_detect'
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'start_tone_detect'
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'stop_tone_detect'
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'start_tdd_detect'
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'stop_tdd_detect'
2014-11-13 11:55:00.321946 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'uuid_send_tdd'
2014-11-13 11:55:00.342139 [CONSOLE] switch_loadable_module.c:1867 Stopping: mod_spandsp
2014-11-13 11:55:00.342139 [NOTICE] switch_event.c:1977 Event Binding deleted for mod_spandsp:RELOADXML
2014-11-13 11:55:00.342139 [NOTICE] switch_event.c:1977 Event Binding deleted for mod_spandsp:CUSTOM
2014-11-13 11:55:00.342139 [NOTICE] switch_loadable_module.c:970 Deleting Application 'esf_page_group'
2014-11-13 11:55:00.342139 [CONSOLE] switch_loadable_module.c:1870 mod_esf has no shutdown routine
2014-11-13 11:55:00.342139 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'expr'
2014-11-13 11:55:00.342139 [CONSOLE] switch_loadable_module.c:1870 mod_expr has no shutdown routine
2014-11-13 11:55:00.342139 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'tone_stream'
2014-11-13 11:55:00.342139 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'silence_stream'
2014-11-13 11:55:00.342139 [CONSOLE] switch_loadable_module.c:1870 mod_tone_stream has no shutdown routine
2014-11-13 11:55:00.342139 [CONSOLE] switch_loadable_module.c:1867 Stopping: mod_logfile
2014-11-13 11:55:00.342139 [NOTICE] switch_event.c:2017 Event Binding deleted for mod_logfile:TRAP
2014-11-13 11:55:00.342139 [INFO] mod_logfile.c:468 Closing /var/freeswitch/log/freeswitch.log
2014-11-13 11:55:00.342139 [NOTICE] switch_loadable_module.c:970 Deleting Application 'hash'
2014-11-13 11:55:00.342139 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'hash'
2014-11-13 11:55:00.342139 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'hash_dump'
2014-11-13 11:55:00.342139 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'hash_remote'
2014-11-13 11:55:00.342139 [NOTICE] switch_loadable_module.c:1237 Deleting Limit interface 'hash'
2014-11-13 11:55:00.342139 [CONSOLE] switch_loadable_module.c:1867 Stopping: mod_hash
2014-11-13 11:55:00.342139 [NOTICE] switch_loadable_module.c:970 Deleting Application 'fifo'
2014-11-13 11:55:00.342139 [NOTICE] switch_loadable_module.c:970 Deleting Application 'fifo_track_call'
2014-11-13 11:55:00.342139 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'fifo'
2014-11-13 11:55:00.342139 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'fifo_member'
2014-11-13 11:55:00.342139 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'fifo_add_outbound'
2014-11-13 11:55:00.342139 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'fifo_check_bridge'
2014-11-13 11:55:00.342139 [CONSOLE] switch_loadable_module.c:1867 Stopping: mod_fifo
2014-11-13 11:55:00.342139 [INFO] switch_core_sqldb.c:1490 fifo Destroying SQL queue.
2014-11-13 11:55:01.202649 [INFO] switch_core_sqldb.c:1434 fifo Stopping SQL thread.
2014-11-13 11:55:01.202649 [NOTICE] switch_event.c:2017 Event Binding deleted for mod_fifo:PRESENCE_PROBE
2014-11-13 11:55:01.225152 [NOTICE] switch_event.c:408 Subclass reservation deleted for mod_fifo.c:fifo::info
2014-11-13 11:55:01.562058 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'cdr_csv'
2014-11-13 11:55:01.562058 [CONSOLE] switch_loadable_module.c:1867 Stopping: mod_cdr_csv
2014-11-13 11:55:01.562058 [NOTICE] switch_event.c:1977 Event Binding deleted for mod_cdr_csv:TRAP
2014-11-13 11:55:01.562058 [NOTICE] switch_loadable_module.c:884 Deleting Endpoint 'error'
2014-11-13 11:55:01.562058 [NOTICE] switch_loadable_module.c:884 Deleting Endpoint 'group'
2014-11-13 11:55:01.562058 [NOTICE] switch_loadable_module.c:884 Deleting Endpoint 'user'
2014-11-13 11:55:01.562058 [NOTICE] switch_loadable_module.c:884 Deleting Endpoint 'pickup'
2014-11-13 11:55:01.562058 [NOTICE] switch_loadable_module.c:937 Deleting Dialplan 'inline'
2014-11-13 11:55:01.562058 [NOTICE] switch_loadable_module.c:970 Deleting Application 'blind_transfer_ack'
2014-11-13 11:55:01.562058 [NOTICE] switch_loadable_module.c:970 Deleting Application 'bind_digit_action'
2014-11-13 11:55:01.562058 [NOTICE] switch_loadable_module.c:970 Deleting Application 'capture'
2014-11-13 11:55:01.562058 [NOTICE] switch_loadable_module.c:970 Deleting Application 'clear_digit_action'
2014-11-13 11:55:01.562058 [NOTICE] switch_loadable_module.c:970 Deleting Application 'digit_action_set_realm'
2014-11-13 11:55:01.562058 [NOTICE] switch_loadable_module.c:970 Deleting Application 'privacy'
2014-11-13 11:55:01.562058 [NOTICE] switch_loadable_module.c:970 Deleting Application 'set_audio_level'
2014-11-13 11:55:01.562058 [NOTICE] switch_loadable_module.c:970 Deleting Application 'set_mute'
2014-11-13 11:55:01.562058 [NOTICE] switch_loadable_module.c:970 Deleting Application 'flush_dtmf'
2014-11-13 11:55:01.562058 [NOTICE] switch_loadable_module.c:970 Deleting Application 'hold'
2014-11-13 11:55:01.562058 [NOTICE] switch_loadable_module.c:970 Deleting Application 'unhold'
2014-11-13 11:55:01.581888 [NOTICE] switch_loadable_module.c:970 Deleting Application 'mutex'
2014-11-13 11:55:01.581888 [NOTICE] switch_loadable_module.c:970 Deleting Application 'page'
2014-11-13 11:55:01.581888 [NOTICE] switch_loadable_module.c:970 Deleting Application 'transfer'
2014-11-13 11:55:01.581888 [NOTICE] switch_loadable_module.c:970 Deleting Application 'check_acl'
2014-11-13 11:55:01.581888 [NOTICE] switch_loadable_module.c:970 Deleting Application 'verbose_events'
2014-11-13 11:55:01.581888 [NOTICE] switch_loadable_module.c:970 Deleting Application 'cng_plc'
2014-11-13 11:55:01.581888 [NOTICE] switch_loadable_module.c:970 Deleting Application 'early_hangup'
2014-11-13 11:55:01.581888 [NOTICE] switch_loadable_module.c:970 Deleting Application 'sleep'
2014-11-13 11:55:01.581888 [NOTICE] switch_loadable_module.c:970 Deleting Application 'delay_echo'
2014-11-13 11:55:01.581888 [NOTICE] switch_loadable_module.c:970 Deleting Application 'strftime'
2014-11-13 11:55:01.581888 [NOTICE] switch_loadable_module.c:970 Deleting Application 'phrase'
2014-11-13 11:55:01.581888 [NOTICE] switch_loadable_module.c:970 Deleting Application 'eval'
2014-11-13 11:55:01.581888 [NOTICE] switch_loadable_module.c:970 Deleting Application 'stop'
2014-11-13 11:55:01.581888 [NOTICE] switch_loadable_module.c:970 Deleting Application 'set_zombie_exec'
2014-11-13 11:55:01.581888 [NOTICE] switch_loadable_module.c:970 Deleting Application 'pre_answer'
2014-11-13 11:55:01.581888 [NOTICE] switch_loadable_module.c:970 Deleting Application 'answer'
2014-11-13 11:55:01.581888 [NOTICE] switch_loadable_module.c:970 Deleting Application 'wait_for_answer'
2014-11-13 11:55:01.581888 [NOTICE] switch_loadable_module.c:970 Deleting Application 'hangup'
2014-11-13 11:55:01.581888 [NOTICE] switch_loadable_module.c:970 Deleting Application 'set_name'
2014-11-13 11:55:01.581888 [NOTICE] switch_loadable_module.c:970 Deleting Application 'presence'
2014-11-13 11:55:01.581888 [NOTICE] switch_loadable_module.c:970 Deleting Application 'log'
2014-11-13 11:55:01.581888 [NOTICE] switch_loadable_module.c:970 Deleting Application 'info'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'event'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'sound_test'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'export'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'bridge_export'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'set'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'multiset'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'push'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'unshift'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'set_global'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'set_profile_var'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'unset'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'ring_ready'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'remove_bugs'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'break'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'detect_speech'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'play_and_detect_speech'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'ivr'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'redirect'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'video_refresh'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'send_info'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'jitterbuffer'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'send_display'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'respond'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'deflect'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'recovery_refresh'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'queue_dtmf'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'send_dtmf'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'sched_cancel'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'sched_hangup'
2014-11-13 11:55:01.601822 [NOTICE] switch_loadable_module.c:970 Deleting Application 'sched_broadcast'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'sched_transfer'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'execute_extension'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'sched_heartbeat'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'enable_heartbeat'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'media_reset'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'mkdir'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'rename'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'soft_hold'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'bind_meta_app'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'unbind_meta_app'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'block_dfmf'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'unblock_dtmf'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'intercept'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'eavesdrop'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'three_way'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'set_user'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'stop_dtmf'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'start_dtmf'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'stop_dtmf_generate'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'start_dtmf_generate'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'stop_tone_detect'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'fax_detect'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'tone_detect'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'echo'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'park'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'park_state'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'gentones'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'playback'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'endless_playback'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'att_xfer'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'read'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'play_and_get_digits'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'stop_record_session'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'record_session'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'record_session_mask'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'record_session_unmask'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'record'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'preprocess'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'stop_displace_session'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'displace_session'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'speak'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'clear_speech_cache'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'bridge'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'system'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'bgsystem'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'say'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'wait_for_silence'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'session_loglevel'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'limit'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'limit_hash'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'limit_execute'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'limit_hash_execute'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:970 Deleting Application 'pickup'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'strepoch'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'page'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'strmicroepoch'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'chat'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'strftime'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'presence'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'file_string'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1177 Deleting Chat interface 'event'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1177 Deleting Chat interface 'api'
2014-11-13 11:55:01.621983 [CONSOLE] switch_loadable_module.c:1867 Stopping: mod_dptools
2014-11-13 11:55:01.621983 [NOTICE] switch_event.c:1977 Event Binding deleted for mod_dptools:PRESENCE_PROBE
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'aiff'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'au'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'avr'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'caf'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'flac'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'htk'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'iff'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'mat'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'mpc'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'oga'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'paf'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'pvf'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'raw'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'rf64'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'sd2'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'sds'
2014-11-13 11:55:01.621983 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'sf'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'voc'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'w64'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'wav'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'wve'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'xi'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'r8'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'r16'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'r24'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'r32'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'gsm'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'ul'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'ulaw'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'al'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'alaw'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'adpcm'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'vox'
2014-11-13 11:55:01.641925 [CONSOLE] switch_loadable_module.c:1867 Stopping: mod_sndfile
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:970 Deleting Application 'db'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:970 Deleting Application 'group'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'db'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'group'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1237 Deleting Limit interface 'db'
2014-11-13 11:55:01.641925 [CONSOLE] switch_loadable_module.c:1867 Stopping: mod_db
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'PROXY-VID'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'L16'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'PCMU'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'G726-40'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'DVI4'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'G726-32'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'G726-24'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'G726-16'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'PCMA'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'G722'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'PROXY'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'AAL2-G726-40'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'AAL2-G726-32'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'AAL2-G726-24'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'GSM'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'AAL2-G726-16'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1067 Deleting File Format 'LPC'
2014-11-13 11:55:01.641925 [CONSOLE] switch_loadable_module.c:1870 mod_native_file has no shutdown routine
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:970 Deleting Application 'socket'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'event_sink'
2014-11-13 11:55:01.641925 [CONSOLE] switch_loadable_module.c:1867 Stopping: mod_event_socket
2014-11-13 11:55:01.641925 [NOTICE] mod_event_socket.c:2831 Shutting Down
2014-11-13 11:55:01.641925 [NOTICE] switch_event.c:2017 Event Binding deleted for mod_event_socket:ALL
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:884 Deleting Endpoint 'loopback'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:970 Deleting Application 'unloop'
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:100 Thread ended for mod_event_socket
2014-11-13 11:55:01.641925 [CONSOLE] switch_loadable_module.c:1867 Stopping: mod_loopback
2014-11-13 11:55:01.641925 [NOTICE] switch_loadable_module.c:954 Deleting Timer 'soft'
2014-11-13 11:55:01.641925 [CONSOLE] switch_loadable_module.c:1867 Stopping: CORE_SOFTTIMER_MODULE
2014-11-13 11:55:01.662416 [CONSOLE] switch_time.c:1075 Soft timer thread exiting.
2014-11-13 11:55:01.662461 [NOTICE] switch_loadable_module.c:100 Thread ended for CORE_SOFTTIMER_MODULE
2014-11-13 11:55:01.672442 [NOTICE] switch_event.c:2017 Event Binding deleted for CORE_SOFTTIMER_MODULE:RELOADXML
2014-11-13 11:55:01.672538 [NOTICE] switch_loadable_module.c:911 Deleting Codec PROXY-VID 31 PROXY VIDEO PASS-THROUGH 90000hz 0ms
2014-11-13 11:55:01.672923 [NOTICE] switch_loadable_module.c:911 Deleting Codec PROXY 0 PROXY PASS-THROUGH 8000hz 20ms
2014-11-13 11:55:01.673239 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 11025hz 32ms
2014-11-13 11:55:01.673373 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 11025hz 40ms
2014-11-13 11:55:01.673431 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 22050hz 20ms
2014-11-13 11:55:01.673484 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 48000hz 40ms
2014-11-13 11:55:01.673707 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 48000hz 30ms
2014-11-13 11:55:01.673759 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 48000hz 20ms
2014-11-13 11:55:01.673916 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 32000hz 8ms
2014-11-13 11:55:01.674033 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 32000hz 6ms
2014-11-13 11:55:01.674081 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 32000hz 4ms
2014-11-13 11:55:01.674195 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 32000hz 2ms
2014-11-13 11:55:01.674245 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 16000hz 8ms
2014-11-13 11:55:01.674415 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 16000hz 6ms
2014-11-13 11:55:01.674470 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 16000hz 4ms
2014-11-13 11:55:01.674588 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 16000hz 2ms
2014-11-13 11:55:01.674785 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 8000hz 8ms
2014-11-13 11:55:01.674974 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 8000hz 6ms
2014-11-13 11:55:01.675040 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 8000hz 4ms
2014-11-13 11:55:01.675118 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 8000hz 2ms
2014-11-13 11:55:01.675240 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 48000hz 10ms
2014-11-13 11:55:01.675426 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 48000hz 8ms
2014-11-13 11:55:01.675485 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 48000hz 6ms
2014-11-13 11:55:01.676398 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 48000hz 4ms
2014-11-13 11:55:01.676465 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 48000hz 2ms
2014-11-13 11:55:01.676578 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 24000hz 60ms
2014-11-13 11:55:01.676627 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 24000hz 40ms
2014-11-13 11:55:01.676668 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 24000hz 20ms
2014-11-13 11:55:01.676743 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 12000hz 100ms
2014-11-13 11:55:01.677087 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 12000hz 80ms
2014-11-13 11:55:01.677147 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 12000hz 60ms
2014-11-13 11:55:01.677193 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 12000hz 40ms
2014-11-13 11:55:01.677315 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 12000hz 20ms
2014-11-13 11:55:01.677443 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 32000hz 10ms
2014-11-13 11:55:01.677495 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 32000hz 20ms
2014-11-13 11:55:01.677614 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 32000hz 30ms
2014-11-13 11:55:01.677663 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 32000hz 40ms
2014-11-13 11:55:01.678022 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 32000hz 50ms
2014-11-13 11:55:01.678158 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 32000hz 60ms
2014-11-13 11:55:01.678292 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 16000hz 10ms
2014-11-13 11:55:01.678426 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 16000hz 20ms
2014-11-13 11:55:01.678632 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 16000hz 30ms
2014-11-13 11:55:01.678692 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 16000hz 40ms
2014-11-13 11:55:01.678868 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 16000hz 50ms
2014-11-13 11:55:01.679067 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 16000hz 60ms
2014-11-13 11:55:01.679215 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 8000hz 10ms
2014-11-13 11:55:01.679272 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 8000hz 20ms
2014-11-13 11:55:01.679313 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 8000hz 30ms
2014-11-13 11:55:01.679421 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 8000hz 40ms
2014-11-13 11:55:01.679536 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 8000hz 50ms
2014-11-13 11:55:01.679587 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 8000hz 60ms
2014-11-13 11:55:01.679634 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 8000hz 70ms
2014-11-13 11:55:01.679793 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 8000hz 80ms
2014-11-13 11:55:01.679845 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 8000hz 90ms
2014-11-13 11:55:01.679967 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 8000hz 100ms
2014-11-13 11:55:01.680041 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 8000hz 110ms
2014-11-13 11:55:01.680072 [NOTICE] switch_loadable_module.c:911 Deleting Codec L16 70 RAW Signed Linear (16 bit) 8000hz 120ms
2014-11-13 11:55:01.680434 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMU 0 G.711 ulaw 8000hz 10ms
2014-11-13 11:55:01.680470 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMU 0 G.711 ulaw 8000hz 20ms
2014-11-13 11:55:01.680497 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMU 0 G.711 ulaw 8000hz 30ms
2014-11-13 11:55:01.680524 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMU 0 G.711 ulaw 8000hz 40ms
2014-11-13 11:55:01.680606 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMU 0 G.711 ulaw 8000hz 50ms
2014-11-13 11:55:01.680723 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMU 0 G.711 ulaw 8000hz 60ms
2014-11-13 11:55:01.680751 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMU 0 G.711 ulaw 8000hz 70ms
2014-11-13 11:55:01.680864 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMU 0 G.711 ulaw 8000hz 80ms
2014-11-13 11:55:01.680944 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMU 0 G.711 ulaw 8000hz 90ms
2014-11-13 11:55:01.680974 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMU 0 G.711 ulaw 8000hz 100ms
2014-11-13 11:55:01.681045 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMU 0 G.711 ulaw 8000hz 110ms
2014-11-13 11:55:01.681075 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMU 0 G.711 ulaw 8000hz 120ms
2014-11-13 11:55:01.681479 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMA 8 G.711 alaw 8000hz 10ms
2014-11-13 11:55:01.681565 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMA 8 G.711 alaw 8000hz 20ms
2014-11-13 11:55:01.681639 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMA 8 G.711 alaw 8000hz 30ms
2014-11-13 11:55:01.681680 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMA 8 G.711 alaw 8000hz 40ms
2014-11-13 11:55:01.681707 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMA 8 G.711 alaw 8000hz 50ms
2014-11-13 11:55:01.681734 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMA 8 G.711 alaw 8000hz 60ms
2014-11-13 11:55:01.681761 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMA 8 G.711 alaw 8000hz 70ms
2014-11-13 11:55:01.682101 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMA 8 G.711 alaw 8000hz 80ms
2014-11-13 11:55:01.682141 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMA 8 G.711 alaw 8000hz 90ms
2014-11-13 11:55:01.682352 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMA 8 G.711 alaw 8000hz 100ms
2014-11-13 11:55:01.682482 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMA 8 G.711 alaw 8000hz 110ms
2014-11-13 11:55:01.682618 [NOTICE] switch_loadable_module.c:911 Deleting Codec PCMA 8 G.711 alaw 8000hz 120ms
2014-11-13 11:55:01.682962 [CONSOLE] switch_loadable_module.c:1867 Stopping: CORE_PCM_MODULE
2014-11-13 11:55:01.683043 [NOTICE] switch_loadable_module.c:884 Deleting Endpoint 'sofia'
2014-11-13 11:55:01.683309 [NOTICE] switch_loadable_module.c:884 Deleting Endpoint 'rtp'
2014-11-13 11:55:01.683492 [NOTICE] switch_loadable_module.c:970 Deleting Application 'sofia_sla'
2014-11-13 11:55:01.683809 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'sofia'
2014-11-13 11:55:01.684036 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'sofia_gateway_data'
2014-11-13 11:55:01.684244 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'sofia_username_of'
2014-11-13 11:55:01.684452 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'sofia_contact'
2014-11-13 11:55:01.684670 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'sofia_count_reg'
2014-11-13 11:55:01.685015 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'sofia_dig'
2014-11-13 11:55:01.685568 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'sofia_presence_data'
2014-11-13 11:55:01.686054 [NOTICE] switch_loadable_module.c:1177 Deleting Chat interface 'sip'
2014-11-13 11:55:01.686272 [NOTICE] switch_loadable_module.c:1219 Deleting Management interface 'mod_sofia' OID[.1.3.6.1.4.1.27880.1001]
2014-11-13 11:55:01.686459 [CONSOLE] switch_loadable_module.c:1867 Stopping: mod_sofia
2014-11-13 11:55:01.686509 [NOTICE] switch_event.c:1977 Event Binding deleted for mod_sofia:PRESENCE_IN
2014-11-13 11:55:01.686530 [NOTICE] switch_event.c:1977 Event Binding deleted for mod_sofia:PRESENCE_OUT
2014-11-13 11:55:01.686550 [NOTICE] switch_event.c:1977 Event Binding deleted for mod_sofia:PRESENCE_PROBE
2014-11-13 11:55:01.686568 [NOTICE] switch_event.c:1977 Event Binding deleted for mod_sofia:MESSAGE_WAITING
2014-11-13 11:55:01.686594 [NOTICE] switch_event.c:1977 Event Binding deleted for mod_sofia:ROSTER
2014-11-13 11:55:01.686615 [NOTICE] switch_event.c:1977 Event Binding deleted for mod_sofia:CONFERENCE_DATA
2014-11-13 11:55:01.686641 [NOTICE] switch_event.c:1977 Event Binding deleted for mod_sofia:TRAP
2014-11-13 11:55:01.686659 [NOTICE] switch_event.c:1977 Event Binding deleted for mod_sofia:NOTIFY
2014-11-13 11:55:01.686677 [NOTICE] switch_event.c:1977 Event Binding deleted for mod_sofia:SEND_MESSAGE
2014-11-13 11:55:01.686836 [NOTICE] switch_event.c:1977 Event Binding deleted for mod_sofia:SEND_INFO
2014-11-13 11:55:01.686871 [NOTICE] switch_event.c:1977 Event Binding deleted for mod_sofia:CUSTOM
2014-11-13 11:55:01.686962 [CONSOLE] sofia_presence.c:1619 Event Thread Ended
2014-11-13 11:55:02.592368 [NOTICE] sofia.c:2650 Waiting for worker thread
2014-11-13 11:55:02.622975 [NOTICE] sofia.c:2650 Waiting for worker thread
2014-11-13 11:55:02.623152 [NOTICE] sofia.c:2650 Waiting for worker thread
2014-11-13 11:55:02.642809 [INFO] switch_core_sqldb.c:1490 sofia:external Destroying SQL queue.
2014-11-13 11:55:02.683481 [INFO] switch_core_sqldb.c:1490 sofia:internal Destroying SQL queue.
2014-11-13 11:55:02.683769 [INFO] switch_core_sqldb.c:1490 sofia:internal-ipv6 Destroying SQL queue.
2014-11-13 11:55:03.521630 [INFO] switch_core_sqldb.c:1434 sofia:external Stopping SQL thread.
2014-11-13 11:55:03.523096 [NOTICE] sofia_glue.c:5880 deleted gateway example.com from profile external
2014-11-13 11:55:03.561723 [INFO] switch_core_sqldb.c:1434 sofia:internal Stopping SQL thread.
2014-11-13 11:55:03.562292 [INFO] switch_core_sqldb.c:1434 sofia:internal-ipv6 Stopping SQL thread.
2014-11-13 11:55:03.581788 [WARNING] sofia.c:1657 MSG Thread Ended
2014-11-13 11:55:03.582361 [NOTICE] switch_loadable_module.c:1025 Deleting API Function 'console'
2014-11-13 11:55:03.584297 [NOTICE] switch_loadable_module.c:937 Deleting Dialplan 'XML'
2014-11-13 11:55:03.585130 [CONSOLE] switch_loadable_module.c:1870 mod_dialplan_xml has no shutdown routine
2014-11-13 11:55:04.591563 [CONSOLE] switch_loadable_module.c:1887 mod_local_stream unloaded.
2014-11-13 11:55:04.592479 [CONSOLE] switch_loadable_module.c:1887 mod_conference unloaded.
2014-11-13 11:55:04.593118 [CONSOLE] switch_loadable_module.c:1887 mod_voicemail unloaded.
2014-11-13 11:55:04.594131 [CONSOLE] switch_loadable_module.c:1887 mod_spandsp unloaded.
2014-11-13 11:55:04.599445 [CONSOLE] switch_loadable_module.c:1887 mod_esf unloaded.
2014-11-13 11:55:04.600232 [CONSOLE] switch_loadable_module.c:1887 mod_expr unloaded.
2014-11-13 11:55:04.601184 [CONSOLE] switch_loadable_module.c:1887 mod_tone_stream unloaded.
2014-11-13 11:55:04.602290 [CONSOLE] switch_loadable_module.c:1887 mod_logfile unloaded.
2014-11-13 11:55:04.603152 [CONSOLE] switch_loadable_module.c:1887 mod_hash unloaded.
2014-11-13 11:55:04.604527 [CONSOLE] switch_loadable_module.c:1887 mod_fifo unloaded.
2014-11-13 11:55:04.605645 [CONSOLE] switch_loadable_module.c:1887 mod_cdr_csv unloaded.
2014-11-13 11:55:04.606521 [CONSOLE] switch_loadable_module.c:1887 mod_dptools unloaded.
2014-11-13 11:55:04.607293 [CONSOLE] switch_loadable_module.c:1887 mod_sndfile unloaded.
2014-11-13 11:55:04.610006 [CONSOLE] switch_loadable_module.c:1887 mod_db unloaded.
2014-11-13 11:55:04.610837 [CONSOLE] switch_loadable_module.c:1887 mod_native_file unloaded.
2014-11-13 11:55:04.611711 [CONSOLE] switch_loadable_module.c:1883 mod_event_socket stopping runtime thread.
2014-11-13 11:55:04.612352 [CONSOLE] switch_loadable_module.c:1887 mod_event_socket unloaded.
2014-11-13 11:55:04.613165 [CONSOLE] switch_loadable_module.c:1887 mod_loopback unloaded.
2014-11-13 11:55:04.613953 [CONSOLE] switch_loadable_module.c:1883 CORE_SOFTTIMER_MODULE stopping runtime thread.
2014-11-13 11:55:04.614597 [CONSOLE] switch_loadable_module.c:1887 CORE_SOFTTIMER_MODULE unloaded.
2014-11-13 11:55:04.615139 [CONSOLE] switch_loadable_module.c:1887 mod_sofia unloaded.
2014-11-13 11:55:04.617679 [CONSOLE] switch_loadable_module.c:1887 mod_console unloaded.
2014-11-13 11:55:04.618671 [CONSOLE] switch_loadable_module.c:1887 mod_dialplan_xml unloaded.
2014-11-13 11:55:04.619911 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:CHANNEL_CREATE
2014-11-13 11:55:04.620671 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:CHANNEL_DESTROY
2014-11-13 11:55:04.621943 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:CHANNEL_STATE
2014-11-13 11:55:04.622641 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:CHANNEL_CALLSTATE
2014-11-13 11:55:04.623286 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:CHANNEL_ANSWER
2014-11-13 11:55:04.623911 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:CHANNEL_EXECUTE
2014-11-13 11:55:04.624511 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:CHANNEL_HOLD
2014-11-13 11:55:04.625218 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:CHANNEL_UNHOLD
2014-11-13 11:55:04.625848 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:CHANNEL_BRIDGE
2014-11-13 11:55:04.626515 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:CHANNEL_UNBRIDGE
2014-11-13 11:55:04.627142 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:CHANNEL_PROGRESS_MEDIA
2014-11-13 11:55:04.628335 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:CHANNEL_ORIGINATE
2014-11-13 11:55:04.629127 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:CHANNEL_UUID
2014-11-13 11:55:04.629666 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:LOG
2014-11-13 11:55:04.630190 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:SHUTDOWN
2014-11-13 11:55:04.630739 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:MODULE_LOAD
2014-11-13 11:55:04.631263 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:MODULE_UNLOAD
2014-11-13 11:55:04.632259 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:CODEC
2014-11-13 11:55:04.632808 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:ADD_SCHEDULE
2014-11-13 11:55:04.633328 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:DEL_SCHEDULE
2014-11-13 11:55:04.634450 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:EXE_SCHEDULE
2014-11-13 11:55:04.635061 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:RE_SCHEDULE
2014-11-13 11:55:04.635938 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:CALL_SECURE
2014-11-13 11:55:04.636793 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:NAT
2014-11-13 11:55:04.637310 [NOTICE] switch_event.c:1977 Event Binding deleted for core_db:CALL_UPDATE
2014-11-13 11:55:05.252515 [INFO] switch_core_sqldb.c:1490 CORE Destroying SQL queue.
2014-11-13 11:55:06.132071 [INFO] switch_core_sqldb.c:1434 CORE Stopping SQL thread.
2014-11-13 11:55:06.151289 [CONSOLE] switch_scheduler.c:317 Stopping Task Thread
2014-11-13 11:55:06.491305 [DEBUG] switch_scheduler.c:143 Deleting task 1 heartbeat (core)
2014-11-13 11:55:06.491866 [DEBUG] switch_scheduler.c:143 Deleting task 2 check_ip (core)
2014-11-13 11:55:06.492291 [NOTICE] switch_scheduler.c:181 Task thread ending
2014-11-13 11:55:06.711802 [CONSOLE] switch_core.c:2569 Closing Event Engine.
2014-11-13 11:55:06.712542 [CONSOLE] switch_event.c:487 Stopping dispatch queues
2014-11-13 11:55:06.713014 [CONSOLE] switch_event.c:294 Dispatch Thread 0 Ended.
2014-11-13 11:55:06.713834 [CONSOLE] switch_event.c:495 Stopping dispatch threads
2014-11-13 11:55:06.714894 [CONSOLE] switch_core.c:2572 Finalizing Shutdown.
2014-11-13 11:55:06.715626 [CONSOLE] switch_log.c:317 Logger Ended.
2014-11-13 11:55:06.731765 [CONSOLE] switch_core_memory.c:606 Stopping memory pool queue.
2014-11-13 11:55:06.831674 [CONSOLE] switch_core_memory.c:484 Returning 619 recycled memory pool(s)
#