]> git.ipfire.org Git - thirdparty/freeswitch.git/log
thirdparty/freeswitch.git
8 years agoMerge pull request #1084 in FS/freeswitch from ~MOCHOUINARD/freeswitch:FS-9792 to...
Mike Jerris [Tue, 27 Dec 2016 19:30:40 +0000 (13:30 -0600)] 
Merge pull request #1084 in FS/freeswitch from ~MOCHOUINARD/freeswitch:FS-9792 to master

* commit '8c1ed38d5eef031e4f471fe5f69ad052a9711997':
  FS-9792: Set channel variable based on the sip phone Accept Language SIP message

8 years agoMerge pull request #1110 in FS/freeswitch from ~SEBASTIAN/freeswitch:bugfix/FS-9840...
Mike Jerris [Tue, 27 Dec 2016 18:36:58 +0000 (12:36 -0600)] 
Merge pull request #1110 in FS/freeswitch from ~SEBASTIAN/freeswitch:bugfix/FS-9840-fix-some-warnings-V2 to master

* commit '8c94e6f57fd9adee5e6a12535811fff8e4d9ae46':
  FS-9840 mod_avmd: Fix implicit declaration warning
  FS-9840 sofia-sip: fix implicit declaration warning
  FS-9840 mod-verto: fix implicit declaration warning
  FS-9840 mod_sofia: fix redefine warning

8 years agoFS-9840 mod_avmd: Fix implicit declaration warning
Sebastian Kemper [Tue, 13 Dec 2016 20:09:45 +0000 (21:09 +0100)] 
FS-9840 mod_avmd: Fix implicit declaration warning

Fix the following compile-time warning:

making all mod_avmd
make[7]: Entering directory '/home/sk/tmp/lede/build_dir/target-mips_24kc_musl-1.1.15/freeswitch-1.8.0/src/mod/applications/mod_avmd'
  CC       mod_avmd_la-mod_avmd.lo
mod_avmd.c: In function 'avmd_process_sample':
mod_avmd.c:49:19: error: implicit declaration of function '__isinf' [-Werror=implicit-function-declaration]
 #define ISINF(x) (__isinf(x))
                   ^
mod_avmd.c:2038:33: note: in expansion of macro 'ISINF'
         if (ISNAN(amplitude) || ISINF(amplitude)) {
                                 ^
cc1: all warnings being treated as errors
Makefile:682: recipe for target 'mod_avmd_la-mod_avmd.lo' failed

Fix this by adding the declaration for __isinf(), the same is done for
__isnan() already

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
8 years agoFS-9840 sofia-sip: fix implicit declaration warning
Sebastian Kemper [Tue, 13 Dec 2016 19:33:02 +0000 (20:33 +0100)] 
FS-9840 sofia-sip: fix implicit declaration warning

This fixes the following compile-time warning:

cc1: note: someone does not honour COPTS correctly, passed 2 times
 LTCOMPILE tport_type_connect.lo
cc1: note: someone does not honour COPTS correctly, passed 2 times
 LTCOMPILE tport_type_ws.lo
cc1: note: someone does not honour COPTS correctly, passed 2 times
 LTCOMPILE ws.lo
cc1: note: someone does not honour COPTS correctly, passed 2 times
ws.c: In function 'hton64':
ws.c:730:14: error: implicit declaration of function '__bswap_64' [-Werror=implicit-function-declaration]
  else return __bswap_64(val);
              ^
cc1: all warnings being treated as errors
Makefile:1465: recipe for target 'ws.lo' failed
make[12]: *** [ws.lo] Error 1

Fix by including byteswap.h, which is available on Linux and also
everywhere glibc is used (wpa_supplicant includes this header the same
way).

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
8 years agoFS-9840 mod-verto: fix implicit declaration warning
Sebastian Kemper [Tue, 13 Dec 2016 19:32:10 +0000 (20:32 +0100)] 
FS-9840 mod-verto: fix implicit declaration warning

This fixes the following compile-time warning:

making all mod_verto
make[7]: Entering directory '/home/sk/tmp/lede/build_dir/target-mips_24kc_musl-1.1.15/freeswitch-1.8.0/src/mod/endpoints/mod_verto'
  CC       mod_verto_la-mod_verto.lo
  CC       mod_verto_la-ws.lo
ws.c: In function 'hton64':
ws.c:730:14: error: implicit declaration of function '__bswap_64' [-Werror=implicit-function-declaration]
  else return __bswap_64(val);
              ^
cc1: all warnings being treated as errors

Fix by including byteswap.h, which is available on Linux and also
everywhere glibc is used (wpa_supplicant includes this header the same
way).

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
8 years agoFS-9840 mod_sofia: fix redefine warning
Sebastian Kemper [Tue, 13 Dec 2016 19:30:45 +0000 (20:30 +0100)] 
FS-9840 mod_sofia: fix redefine warning

This fixes the following compile-time warning:

make[8]: Entering directory '/home/sk/tmp/lede/build_dir/target-mips_24kc_musl-1.1.15/freeswitch-1.8.0/src/mod/endpoints/mod_sofia'
  CC       mod_sofia_la-mod_sofia.lo
  CC       mod_sofia_la-sofia.lo
  CC       mod_sofia_la-sofia_glue.lo
  CC       mod_sofia_la-sofia_presence.lo
  CC       mod_sofia_la-sofia_reg.lo
  CC       mod_sofia_la-sofia_media.lo
  CC       mod_sofia_la-sip-dig.lo
In file included from sip-dig.c:137:0:
/home/sk/tmp/lede/build_dir/target-mips_24kc_musl-1.1.15/freeswitch-1.8.0/libs/sofia-sip/libsofia-sip-ua/bnf/../../config.h:522:0: error: "__BYTE_ORDER" redefined [-Werror]
 #define __BYTE_ORDER __BIG_ENDIAN
 ^
In file included from /home/sk/tmp/lede/staging_dir/toolchain-mips_24kc_gcc-5.4.0_musl-1.1.15/include/sys/types.h:70:0,
                 from ../../../../src/include/switch.h:107,
                 from sip-dig.c:135:
/home/sk/tmp/lede/staging_dir/toolchain-mips_24kc_gcc-5.4.0_musl-1.1.15/include/endian.h:11:0: note: this is the location of the previous definition
 #define __BYTE_ORDER __BYTE_ORDER__
 ^
cc1: all warnings being treated as errors

SWITCH_BYTE_ORDER is already used elsewhere in FS source and takes care
of changing byte order without causing a warning

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
8 years agoMerge pull request #1105 in FS/freeswitch from bugfix/FS-9832-start-a-single-gateway...
Mike Jerris [Fri, 23 Dec 2016 20:15:53 +0000 (14:15 -0600)] 
Merge pull request #1105 in FS/freeswitch from bugfix/FS-9832-start-a-single-gateway to master

* commit '50e0f0195e67208889f15a439ea6ccb567b862e7':
  FS-9832 start a single gateway or _all_ gateways

8 years agoMerge pull request #1117 in FS/freeswitch from ~ANTONIO/freeswitch:feature/FS-6893...
Mike Jerris [Fri, 23 Dec 2016 20:11:17 +0000 (14:11 -0600)] 
Merge pull request #1117 in FS/freeswitch from ~ANTONIO/freeswitch:feature/FS-6893-mod_conference-auto-record-create to master

* commit '38c3f5f66e775d814b5e3d5581aed5b2f41b6fd1':
  FS-6893 [mod_conference] recording auto creates file path if not exists

8 years agoFS-4102: [mod_sofia] invite to gateway without registration goes to another wrong...
Anthony Minessale [Thu, 22 Dec 2016 22:13:44 +0000 (16:13 -0600)] 
FS-4102: [mod_sofia] invite to gateway without registration goes to another wrong host #resolve

8 years agoFS-9880: [freeswitch-core] Code to check for text-only is too soon in app processing...
Anthony Minessale [Thu, 22 Dec 2016 19:03:54 +0000 (13:03 -0600)] 
FS-9880: [freeswitch-core] Code to check for text-only is too soon in app processing #resolve

8 years agoMerge pull request #1121 in FS/freeswitch from ~SHAILESHPLIVO/freeswitch:bugfix/FS...
Mike Jerris [Thu, 22 Dec 2016 17:28:33 +0000 (11:28 -0600)] 
Merge pull request #1121 in FS/freeswitch from ~SHAILESHPLIVO/freeswitch:bugfix/FS-9876-incoming-rtp-packet-loss-calculation to master

* commit 'a8351e001c726e0fc741a4d43adffa56f109eb65':
  FS-9876 switch_rtp this fix issue of rtcp lost packet count

8 years agoFS-9876 switch_rtp this fix issue of rtcp lost packet count
shaileshplivo [Thu, 22 Dec 2016 17:07:51 +0000 (17:07 +0000)] 
FS-9876 switch_rtp this fix issue of rtcp lost packet count

8 years agoFS-9854: [mod_sofia] SDP O/A fails to put sdp in messages after certain kinds of...
Mike Jerris [Thu, 15 Dec 2016 20:01:54 +0000 (14:01 -0600)] 
FS-9854: [mod_sofia] SDP O/A fails to put sdp in messages after certain kinds of sip traffic

8 years agoFS-9871: [freeswitch-core] DTMF not delivered on B leg of a bridge when A leg has...
Anthony Minessale [Wed, 21 Dec 2016 22:09:54 +0000 (16:09 -0600)] 
FS-9871: [freeswitch-core] DTMF not delivered on B leg of a bridge when A leg has no media #resolve

8 years agoFS-9870: [freeswitch-core] playback_timeout_sec does not stop a delimited playback...
Anthony Minessale [Wed, 21 Dec 2016 21:35:53 +0000 (15:35 -0600)] 
FS-9870: [freeswitch-core] playback_timeout_sec does not stop a delimited playback #resolve

8 years agoFS-9869 [mod_callcenter] Exporting cc_queue_joined_epoch when originating agent outbo...
Italo Rossi [Wed, 21 Dec 2016 15:14:04 +0000 (12:14 -0300)] 
FS-9869 [mod_callcenter] Exporting cc_queue_joined_epoch when originating agent outbound leg

8 years agoFS-6893 [mod_conference] recording auto creates file path if not exists
Antonio [Wed, 21 Dec 2016 12:53:18 +0000 (13:53 +0100)] 
FS-6893 [mod_conference] recording auto creates file path if not exists

8 years agoMerge pull request #1067 in FS/freeswitch from ~WHENRY/freeswitch:improvement/FS...
Mike Jerris [Wed, 21 Dec 2016 00:45:35 +0000 (18:45 -0600)] 
Merge pull request #1067 in FS/freeswitch from ~WHENRY/freeswitch:improvement/FS-9760_remove_whitespace to master

* commit '46b63a4bb6f67d8066a354e55ea6bbd10d7d53fa':
  FS-9760 Removed the un-needed whitespace from the file

8 years agoFS-9866: [freeswitch-core] 3pcc=proxy for FS client and local SDP #resolve
Anthony Minessale [Wed, 21 Dec 2016 00:28:09 +0000 (18:28 -0600)] 
FS-9866: [freeswitch-core] 3pcc=proxy for FS client and local SDP #resolve

8 years agoMerge pull request #1115 in FS/freeswitch from ~SEBASTIAN/freeswitch:enhancement...
Mike Jerris [Wed, 21 Dec 2016 00:13:40 +0000 (18:13 -0600)] 
Merge pull request #1115 in FS/freeswitch from ~SEBASTIAN/freeswitch:enhancement/FS-9858-add-switches-to-disable-freetype-and-libpng to master

* commit 'ca7e3694a56d5a817b78b8802d9c24269b1c4138':
  FS-9858: add configure switches to disable libpng and freetype support

8 years agoFS-9846: [mod_sofia] Bugs related with Hold and Proxy Hold option added in FS-9192...
Brian West [Tue, 20 Dec 2016 22:19:30 +0000 (16:19 -0600)] 
FS-9846: [mod_sofia] Bugs related with Hold and Proxy Hold option added in FS-9192 after merges in 1.6.11 #resolve

8 years agoFS-9858: add configure switches to disable libpng and freetype support
Sebastian Kemper [Tue, 20 Dec 2016 18:21:37 +0000 (19:21 +0100)] 
FS-9858: add configure switches to disable libpng and freetype support

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
8 years agoFS-9745: [mod_sofia] Call to FS WebRTC Gateway fails when no SDP on invite #resolve
Anthony Minessale [Tue, 20 Dec 2016 18:20:41 +0000 (12:20 -0600)] 
FS-9745: [mod_sofia] Call to FS WebRTC Gateway fails when no SDP on invite #resolve

8 years agoFS-9206: [mod_sofia] FS not update proxy media RTP stream params when SDP is changed...
Anthony Minessale [Tue, 20 Dec 2016 17:22:18 +0000 (11:22 -0600)] 
FS-9206: [mod_sofia] FS not update proxy media RTP stream params when SDP is changed #resolve

8 years agoFS-9806: [mod_loopback] mod_loopback: bowout is always done even if set to false...
Anthony Minessale [Tue, 20 Dec 2016 17:08:17 +0000 (11:08 -0600)] 
FS-9806: [mod_loopback] mod_loopback: bowout is always done even if set to false loopback_bowout_on_execute=false,loopback_bowout=false #resolve

8 years agoFS-9863: [] video_width/video_height unset with playback application #resolve
Anthony Minessale [Mon, 19 Dec 2016 23:53:41 +0000 (17:53 -0600)] 
FS-9863: [] video_width/video_height unset with playback application #resolve

8 years agoMerge pull request #1106 in FS/freeswitch from ~J0SH/freeswitch:echofix to master
Mike Jerris [Mon, 19 Dec 2016 22:05:56 +0000 (16:05 -0600)] 
Merge pull request #1106 in FS/freeswitch from ~J0SH/freeswitch:echofix to master

* commit '2a32e016ddb11d2a72eaf349e166e95a9bcac0b7':
  FS-9725: Fix echo if blank image is disabled.

8 years agofix typo %ignore
Brian West [Thu, 15 Dec 2016 20:03:57 +0000 (14:03 -0600)] 
fix typo %ignore

8 years agoswigall
Brian West [Wed, 14 Dec 2016 20:09:11 +0000 (14:09 -0600)] 
swigall

8 years agoFS-9851: [freeswitch-core] Add abstimeout to CoreSession:getDigits in switch_cpp...
Brian West [Wed, 14 Dec 2016 20:02:04 +0000 (14:02 -0600)] 
FS-9851: [freeswitch-core] Add abstimeout to CoreSession:getDigits in switch_cpp #resolve

8 years ago%ignore update fixbug.pl to include component
Brian West [Tue, 13 Dec 2016 23:01:41 +0000 (17:01 -0600)] 
%ignore update fixbug.pl to include component

8 years agoFS-9829 #resolve [FreeSWITCH 200ok to second reINVITE on a dialog doesn't contain...
Brian West [Tue, 13 Dec 2016 22:39:57 +0000 (16:39 -0600)] 
FS-9829 #resolve [FreeSWITCH 200ok to second reINVITE on a dialog doesn't contain an SDP.]

8 years agoFS-9825 fix spec file from amrwb merge
Brian West [Tue, 13 Dec 2016 22:33:46 +0000 (16:33 -0600)] 
FS-9825 fix spec file from amrwb merge

8 years agoMerge pull request #1108 in FS/freeswitch from ~PIOTRGREGOR/freeswitch:bugfix/FS...
Brian West [Tue, 13 Dec 2016 16:37:08 +0000 (10:37 -0600)] 
Merge pull request #1108 in FS/freeswitch from ~PIOTRGREGOR/freeswitch:bugfix/FS-9843-avmd-remove-not-used-defines to master

* commit 'df80234f0713c512374352e31044a54517b5f981':
  FS-9843 [mod_avmd] Remove unused defines

8 years agoFS-9808 #resolve [mod_png issue when used with ivr as video input]
Brian West [Tue, 13 Dec 2016 15:32:02 +0000 (09:32 -0600)] 
FS-9808 #resolve [mod_png issue when used with ivr as video input]

8 years agoFS-9843 [mod_avmd] Remove unused defines
Piotr Gregor [Tue, 13 Dec 2016 10:13:37 +0000 (10:13 +0000)] 
FS-9843 [mod_avmd] Remove unused defines

8 years agoFS-9725: Fix echo if blank image is disabled.
Josh Allmann [Mon, 12 Dec 2016 16:16:53 +0000 (11:16 -0500)] 
FS-9725: Fix echo if blank image is disabled.

8 years agoFS-9836 #resolve [t38_gateway doesn't function properly after FS-9638 merge]
Brian West [Fri, 9 Dec 2016 22:53:21 +0000 (16:53 -0600)] 
FS-9836 #resolve [t38_gateway doesn't function properly after FS-9638 merge]

8 years agoadd coding guidelines
Anthony Minessale [Fri, 9 Dec 2016 19:58:17 +0000 (13:58 -0600)] 
add coding guidelines

8 years agoFS-9835 [mod_callcenter] Fix segfault when passing freed pointer to cc_send_presence...
Italo Rossi [Fri, 9 Dec 2016 19:34:05 +0000 (16:34 -0300)] 
FS-9835 [mod_callcenter] Fix segfault when passing freed pointer to cc_send_presence due to queue unload/reload

8 years agoFS-9832 start a single gateway or _all_ gateways
Seven Du [Thu, 8 Dec 2016 12:47:22 +0000 (20:47 +0800)] 
FS-9832 start a single gateway or _all_ gateways

8 years agoFS-9827 [mod_hiredis] handle NIL reply
Chris Rienzo [Wed, 7 Dec 2016 19:53:29 +0000 (14:53 -0500)] 
FS-9827 [mod_hiredis] handle NIL reply

8 years agoMerge pull request #1101 in FS/freeswitch from ~MOTEUS/freeswitch:mod_lua_leak to...
Mike Jerris [Wed, 7 Dec 2016 19:31:57 +0000 (13:31 -0600)] 
Merge pull request #1101 in FS/freeswitch from ~MOTEUS/freeswitch:mod_lua_leak to master

* commit '672b5d8309b57f4f6996bded4fa365b90a8516ac':
  FS-9821 [mod_lua] Fix. memory/resource leak in mod_lua

8 years agoMerge pull request #1102 in FS/freeswitch from ~SEBASTIAN/freeswitch:bugfix/FS-9824...
Brian West [Wed, 7 Dec 2016 19:31:32 +0000 (13:31 -0600)] 
Merge pull request #1102 in FS/freeswitch from ~SEBASTIAN/freeswitch:bugfix/FS-9824-fix-tone2wav-segfault to master

* commit '4ed1433cc6dd6936c1f1e474e653cbb45593c937':
  FS-9824 [tone2wav.c] Fix segfault on tone2wav

8 years agoMerge pull request #1104 in FS/freeswitch from ~CRIENZO/freeswitch:fs-9826 to master
Brian West [Wed, 7 Dec 2016 19:05:55 +0000 (13:05 -0600)] 
Merge pull request #1104 in FS/freeswitch from ~CRIENZO/freeswitch:fs-9826 to master

* commit '74ecc8882ff59f5f8aacaef28a59d1c0d33192ab':
  FS-9826 reset jitter buffer if SSRC changes regardless of jitter buffer paused state

8 years agoFS-9821 [mod_lua] Fix. memory/resource leak in mod_lua
Alexey Melnichuk [Wed, 7 Dec 2016 07:06:48 +0000 (10:06 +0300)] 
FS-9821 [mod_lua] Fix. memory/resource leak in mod_lua

8 years agoFS-9825 fix config file for amr and add the amrwb config
Brian West [Wed, 7 Dec 2016 18:55:50 +0000 (12:55 -0600)] 
FS-9825 fix config file for amr and add the amrwb config

8 years agoFS-9826 reset jitter buffer if SSRC changes regardless of jitter buffer paused state
Chris Rienzo [Wed, 7 Dec 2016 18:44:31 +0000 (13:44 -0500)] 
FS-9826 reset jitter buffer if SSRC changes regardless of jitter buffer paused state

8 years agoMerge pull request #1103 in FS/freeswitch from ~DRAGOS_OANCEA/freeswitch-dragos:amrwb...
Brian West [Wed, 7 Dec 2016 17:20:49 +0000 (11:20 -0600)] 
Merge pull request #1103 in FS/freeswitch from ~DRAGOS_OANCEA/freeswitch-dragos:amrwb_encode_decode to master

* commit '3ccf1704c16ef32ae8d2469f2da960021310dfd5':
  FS-9825: Added AMR-WB transcoding capabilities (in both Bandwidth Efficient and Octet Aligned modes)

8 years agoFS-9825: Added AMR-WB transcoding capabilities (in both Bandwidth Efficient and Octet...
Dragos Oancea [Wed, 7 Dec 2016 11:07:23 +0000 (06:07 -0500)] 
FS-9825: Added AMR-WB transcoding capabilities (in both Bandwidth Efficient and Octet Aligned modes)

8 years agoFS-9824 [tone2wav.c] Fix segfault on tone2wav
Sebastian Kemper [Wed, 7 Dec 2016 16:01:51 +0000 (17:01 +0100)] 
FS-9824 [tone2wav.c] Fix segfault on tone2wav

I checked fs_encode and saw that it terminates itself a bit differently, so I applied the same to tone2wav and the segfaults went away

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
8 years agoFS-9823 free subclass properly
Brian West [Wed, 7 Dec 2016 14:41:45 +0000 (08:41 -0600)] 
FS-9823 free subclass properly

8 years agoFS-9820 #resolve [Add thread_pool to libks]
Anthony Minessale [Tue, 6 Dec 2016 22:46:08 +0000 (16:46 -0600)] 
FS-9820 #resolve [Add thread_pool to libks]

8 years agoFS-9792: Set channel variable based on the sip phone Accept Language SIP message
Marc Olivier Chouinard [Wed, 30 Nov 2016 20:00:36 +0000 (15:00 -0500)] 
FS-9792: Set channel variable based on the sip phone Accept Language SIP message

8 years agoFS-9816 yasm is not a runtime dependency, its only needed to build libvpx when compiling
Brian West [Tue, 6 Dec 2016 14:29:08 +0000 (08:29 -0600)] 
FS-9816 yasm is not a runtime dependency, its only needed to build libvpx when compiling

8 years agoFS-9817 #resolve fix regression from 828d6eaf0177caff9b60052be3c83b2008f85416
Seven Du [Tue, 6 Dec 2016 03:31:04 +0000 (11:31 +0800)] 
FS-9817 #resolve fix regression from 828d6eaf0177caff9b60052be3c83b2008f85416

8 years agoMerge pull request #1095 in FS/freeswitch from bugfix/FS-9810-ws-write-fail-on-slow...
Anthony Minessale II [Mon, 5 Dec 2016 21:09:39 +0000 (15:09 -0600)] 
Merge pull request #1095 in FS/freeswitch from bugfix/FS-9810-ws-write-fail-on-slow-network to master

* commit 'b26fa6e17ce40f5ad982b41142389bca0d420427':
  FS-9810 fix ws write fail on slow network

8 years agoMerge pull request #1098 in FS/freeswitch from ~LAZEDO/freeswitch:feature/FS-9813...
Mike Jerris [Mon, 5 Dec 2016 18:02:13 +0000 (12:02 -0600)] 
Merge pull request #1098 in FS/freeswitch from ~LAZEDO/freeswitch:feature/FS-9813 to master

* commit '01decbf434ea323c155fec5e863f5e51e55bad97':
  FS-9813 [mod_kazoo] add kz_http_put

8 years agoMerge pull request #1094 in FS/freeswitch from ~SAFAROV/freeswitch2:FS-9805 to master
Brian West [Mon, 5 Dec 2016 13:56:05 +0000 (07:56 -0600)] 
Merge pull request #1094 in FS/freeswitch from ~SAFAROV/freeswitch2:FS-9805 to master

* commit 'fdfc024a521d2f08966226d8c95b03bf4c19fb85':
  FS-9805: Organized prompts in phrase_en.xml
  FS-9805: Created script to compare XML traslation files with phrase_en.xml

8 years agoFS-9812 fix label that is only used when zrtp or srtp are enabled
Brian West [Mon, 5 Dec 2016 12:38:44 +0000 (06:38 -0600)] 
FS-9812 fix label that is only used when zrtp or srtp are enabled

8 years agoFS-9813 [mod_kazoo] add kz_http_put
Luis Azedo [Mon, 5 Dec 2016 08:09:35 +0000 (08:09 +0000)] 
FS-9813 [mod_kazoo] add kz_http_put

8 years agoMerge pull request #1080 in FS/freeswitch from ~MOCHOUINARD/freeswitch:FS-9788 to...
Brian West [Sun, 4 Dec 2016 12:53:51 +0000 (06:53 -0600)] 
Merge pull request #1080 in FS/freeswitch from ~MOCHOUINARD/freeswitch:FS-9788 to master

* commit '347c93f1c1360d7f03d337d4b428cd24ad6d7b16':
  FS-9788: Add close() option to FileIO implementation

8 years agoMerge pull request #1090 in FS/freeswitch from ~ANDYWOLK/freeswitch:feature/FS-9798...
Brian West [Sun, 4 Dec 2016 12:53:07 +0000 (06:53 -0600)] 
Merge pull request #1090 in FS/freeswitch from ~ANDYWOLK/freeswitch:feature/FS-9798-implement-native-postgresql-in-javascript to master

* commit 'fff5b939b58d47aed98b5f26b21282e82e25ee14':
  FS-9798 [mod_v8] Implement native PostgreSQL in JavaScript by adding a Database Handler (DBH) class

8 years agoFS-9810 fix ws write fail on slow network
Seven Du [Sun, 4 Dec 2016 04:49:46 +0000 (12:49 +0800)] 
FS-9810 fix ws write fail on slow network

8 years agoFS-9805: Organized prompts in phrase_en.xml
Sergey Safarov [Sat, 3 Dec 2016 06:37:00 +0000 (01:37 -0500)] 
FS-9805: Organized prompts in phrase_en.xml

8 years agoFS-9805: Created script to compare XML traslation files with phrase_en.xml
Sergey Safarov [Fri, 2 Dec 2016 21:14:39 +0000 (16:14 -0500)] 
FS-9805: Created script to compare XML traslation files with phrase_en.xml

8 years agoFS-9765 one tweak from submitted patch to use switch_channel_var_true instead of...
Brian West [Fri, 2 Dec 2016 17:50:42 +0000 (11:50 -0600)] 
FS-9765 one tweak from submitted patch to use switch_channel_var_true instead of switch_channel_get_variable no need to allocate on every hold/unhold just to check if this is enabled.

8 years agoMerge pull request #1077 in FS/freeswitch from ~STEPHALNET/freeswitch:FS-9777 to...
Brian West [Fri, 2 Dec 2016 17:44:04 +0000 (11:44 -0600)] 
Merge pull request #1077 in FS/freeswitch from ~STEPHALNET/freeswitch:FS-9777 to master

* commit '86bcee03518ff5ecbb7bae8e78f3821b4027ad09':
  remove redundant `if (rep)` statement

8 years agoMerge pull request #1086 in FS/freeswitch from ~MOCHOUINARD/freeswitch:FS-9794 to...
Brian West [Fri, 2 Dec 2016 17:36:33 +0000 (11:36 -0600)] 
Merge pull request #1086 in FS/freeswitch from ~MOCHOUINARD/freeswitch:FS-9794 to master

* commit 'ac14496c73c8f15e1b433189fe6bf78e31b772ec':
  FS-9794: Set the result cause of an originate failed cause to variable originate_failed_cause

8 years agoMerge pull request #1093 in FS/freeswitch from bugfix/FS-9804-phrases to master
Brian West [Fri, 2 Dec 2016 17:33:52 +0000 (11:33 -0600)] 
Merge pull request #1093 in FS/freeswitch from bugfix/FS-9804-phrases to master

* commit 'e91a428fd3b0f5921aa855e221d80c78cd1bf121':
  FS-8733 FS-9804 various phrase updates
  FS-9804 broken closing tag

8 years agoFS-8733 FS-9804 various phrase updates
nneul at mst.edu [Fri, 2 Dec 2016 16:45:17 +0000 (10:45 -0600)] 
FS-8733 FS-9804 various phrase updates

8 years agoFS-9804 broken closing tag
nneul at mst.edu [Fri, 2 Dec 2016 16:24:30 +0000 (10:24 -0600)] 
FS-9804 broken closing tag

8 years agoFS-9799 rotate and increase log file size
Brian West [Fri, 2 Dec 2016 15:09:15 +0000 (09:09 -0600)] 
FS-9799 rotate and increase log file size

8 years agoMerge pull request #888 in FS/freeswitch from ~MZAKA/freeswitch:bugfix/FS-9277-sip...
Brian West [Fri, 2 Dec 2016 02:22:57 +0000 (20:22 -0600)] 
Merge pull request #888 in FS/freeswitch from ~MZAKA/freeswitch:bugfix/FS-9277-sip-info-record to master

* commit 'addf7555bff15889d73e48bf70445d6d27d79fce':
  FS-9277: sip info with record: on and off doesn't start and stop call recording sessions

8 years agoFS-9803 #resolve [Add support for arbitrary data as hash keys]
Anthony Minessale [Fri, 2 Dec 2016 00:11:01 +0000 (18:11 -0600)] 
FS-9803 #resolve [Add support for arbitrary data as hash keys]

8 years agoMerge pull request #1091 in FS/freeswitch from bugfix/FS-9801-phrase-files to master
Brian West [Thu, 1 Dec 2016 18:42:11 +0000 (12:42 -0600)] 
Merge pull request #1091 in FS/freeswitch from bugfix/FS-9801-phrase-files to master

* commit 'f51bf04095256168ddf75b5d344e5d957d7d7173':
  FS-9801 fix incorrect xml sections for phrase files

8 years agoFS-9801 fix incorrect xml sections for phrase files
nneul at mst.edu [Thu, 1 Dec 2016 18:40:46 +0000 (12:40 -0600)] 
FS-9801 fix incorrect xml sections for phrase files

8 years agoFS-9800: [core] add new accessor functions to core statistics for use in modules
Mike Jerris [Thu, 1 Dec 2016 18:12:04 +0000 (13:12 -0500)] 
FS-9800: [core] add new accessor functions to core statistics for use in modules

8 years agoFS-9779 fix compiler issue
Brian West [Thu, 1 Dec 2016 15:38:17 +0000 (09:38 -0600)] 
FS-9779 fix compiler issue

8 years agoFS-9798 [mod_v8] Implement native PostgreSQL in JavaScript by adding a Database Handl...
Andrey Volk [Thu, 1 Dec 2016 12:45:18 +0000 (15:45 +0300)] 
FS-9798 [mod_v8] Implement native PostgreSQL in JavaScript by adding a Database Handler (DBH) class

8 years agoMerge pull request #1088 in FS/freeswitch from ~ROMANAT/freeswitch:feature/FS-9734...
Brian West [Wed, 30 Nov 2016 23:28:38 +0000 (17:28 -0600)] 
Merge pull request #1088 in FS/freeswitch from ~ROMANAT/freeswitch:feature/FS-9734-add-channel-vars-att_xfer to master

* commit 'c20fa5e8f7cef34086c26ef6e0bbd81b2be7df4b':
  FS-9734: updated keys to be set in memory on att_xfer execution

8 years agoFS-9734: updated keys to be set in memory on att_xfer execution
romana [Wed, 30 Nov 2016 22:04:44 +0000 (17:04 -0500)] 
FS-9734: updated keys to be set in memory on att_xfer execution

8 years agoFS-9782: [mod_sofia] on recovery, flip the order of the record route on inbound calls...
Mike Jerris [Wed, 30 Nov 2016 22:31:55 +0000 (15:31 -0700)] 
FS-9782: [mod_sofia] on recovery, flip the order of the record route on inbound calls only, use the record route in the same order on inbound calls and in reverse order on outbound calls as the initial route set when doing the recover invite.  Account for the call direction based on how sip considers it, not based on freeswitch direction so inbound calls after recovery are treated as outbound in this logic

8 years agoFS-9734: fix this so we don't allocate memory using switch_channel_get_variable on...
Brian West [Wed, 30 Nov 2016 21:20:29 +0000 (15:20 -0600)] 
FS-9734: fix this so we don't allocate memory using switch_channel_get_variable on every digit, Only do it once.

8 years agotweak our bashrc %ignore
Brian West [Wed, 30 Nov 2016 20:29:21 +0000 (14:29 -0600)] 
tweak our bashrc %ignore

8 years agoFS-9794: Set the result cause of an originate failed cause to variable originate_fail...
Marc Olivier Chouinard [Wed, 30 Nov 2016 20:19:43 +0000 (15:19 -0500)] 
FS-9794: Set the result cause of an originate failed cause to variable originate_failed_cause

8 years agoFS-9788: Add close() option to FileIO implementation
Marc Olivier Chouinard [Wed, 30 Nov 2016 19:28:39 +0000 (14:28 -0500)] 
FS-9788: Add close() option to FileIO implementation

8 years agoMerge pull request #1057 in FS/freeswitch from ~ROMANAT/freeswitch:feature/FS-9734...
Brian West [Wed, 30 Nov 2016 16:37:46 +0000 (10:37 -0600)] 
Merge pull request #1057 in FS/freeswitch from ~ROMANAT/freeswitch:feature/FS-9734-add-channel-vars-att_xfer to master

* commit 'aadd81d6d33dc6402d10ae452394aa8ddd3d1176':
  FS-9734: added new channel vars in att_xfer which allow cancel, hangup and conf keys to be changed

8 years agoFS-9787 #resolve remove duplicated headers in conference del-member events
Seven Du [Wed, 30 Nov 2016 16:15:12 +0000 (00:15 +0800)] 
FS-9787 #resolve remove duplicated headers in conference del-member events

8 years agoFS-9736 #resolve add conference json_list
Seven Du [Wed, 30 Nov 2016 15:54:18 +0000 (23:54 +0800)] 
FS-9736 #resolve add conference json_list

8 years ago FS-9771 fix rpm build
Brian West [Wed, 30 Nov 2016 00:53:54 +0000 (18:53 -0600)] 
  FS-9771 fix rpm build

8 years agoFS-9782: [mod_sofia] on recovery, don't flip the order of the record route ever,...
Mike Jerris [Tue, 29 Nov 2016 22:04:06 +0000 (15:04 -0700)] 
FS-9782: [mod_sofia] on recovery, don't flip the order of the record route ever, on outbound calls use the record route in the reverse order as the initial route set when doing the recover invite

8 years agoMerge pull request #1079 in FS/freeswitch from ~F93/freeswitch:feature/FS-9780-increa...
Brian West [Tue, 29 Nov 2016 16:30:01 +0000 (10:30 -0600)] 
Merge pull request #1079 in FS/freeswitch from ~F93/freeswitch:feature/FS-9780-increasing-max_command_tries-in-mod_spandsp to master

* commit '8b601977a7bc8990280446cf19145ff10b8f6188':
  FS-9780 [spandsp] Change MAX_COMMAND_TRIES to 6

8 years agoFS-9780 [spandsp] Change MAX_COMMAND_TRIES to 6
Roman Sukhov [Tue, 29 Nov 2016 14:51:31 +0000 (17:51 +0300)] 
FS-9780 [spandsp] Change MAX_COMMAND_TRIES to 6

8 years agoremove redundant `if (rep)` statement
Stephane Alnet [Tue, 29 Nov 2016 11:02:26 +0000 (12:02 +0100)] 
remove redundant `if (rep)` statement

8 years agoFS-9779 Disable mod_raven in ubuntu builds for the time being until the build issues...
Ken Rice [Tue, 29 Nov 2016 00:03:09 +0000 (18:03 -0600)] 
FS-9779 Disable mod_raven in ubuntu builds for the time being until the build issues on ubuntu for this new module are resolved

8 years agolibblade initial checkin
Mike Jerris [Mon, 28 Nov 2016 21:35:09 +0000 (16:35 -0500)] 
libblade initial checkin

8 years agoMerge pull request #1075 in FS/freeswitch from ~DRAGOS_OANCEA/freeswitch-dragos:conf_...
Brian West [Mon, 28 Nov 2016 16:43:28 +0000 (10:43 -0600)] 
Merge pull request #1075 in FS/freeswitch from ~DRAGOS_OANCEA/freeswitch-dragos:conf_opus_adj_bitrate to master

* commit '366ddc0c10112b140916bd42f87fe2b17e50e6a0':
  FS-9770: xml config: add new config setting 'adjust-bitrate' for mod_opus

8 years agoMerge pull request #1076 in FS/freeswitch from ~DRAGOS_OANCEA/freeswitch-dragos:add_c...
Brian West [Mon, 28 Nov 2016 16:42:46 +0000 (10:42 -0600)] 
Merge pull request #1076 in FS/freeswitch from ~DRAGOS_OANCEA/freeswitch-dragos:add_conf_xml_amr to master

* commit '6b6cc67fbe2534db7914974cc7ad9ababc1ecddd':
  FS-9771: add xml settings for mod_amr to reflect the recent code additions

8 years agoFS-9771: add xml settings for mod_amr to reflect the recent code additions
Dragos Oancea [Thu, 24 Nov 2016 21:52:13 +0000 (16:52 -0500)] 
FS-9771: add xml settings for mod_amr to reflect the recent code additions