Andrey Volk
9c8de649b3
FS-11947: [Build-System] Do not install test binaries when doing make install.
2019-07-23 19:34:21 +04:00
Andrey Volk
ccc4ae282a
FS-11880: [Core,mod_pgsql] Remove native PostgreSQL support from the core, add mod_pgsql database module.
2019-07-18 00:20:50 +04:00
Chris Rienzo
7d0523f084
FS-11785 [mod_format_cdr, mod_local_stream] fix dead assignment
2019-07-17 21:50:43 +04:00
Chris Rienzo
91d07accee
FS-11785 [mod_event_socket] fix dead assignment
2019-07-17 21:50:36 +04:00
Andrey Volk
f4c9048e24
FS-11903: Fix errors reported by PVS-Studio Static Code Analyzer for mod_rayo
2019-07-15 23:39:28 +04:00
Andrey Volk
e0211e2ce1
FS-11903: Fix errors reported by PVS-Studio Static Code Analyzer for mod_event_socket
2019-07-15 23:39:26 +04:00
Andrey Volk
a7477ed0e2
FS-11911: Fix build on Debian Buster
2019-07-15 22:23:25 +04:00
lazedo
ad7db39999
FS-11732 [mod_kazoo] ei_init added in OTP 21.3
2019-06-25 14:54:47 +00:00
Andrey Volk
08a6a8a2fa
FS-11864: [mod_kazoo] Fix uint64_t type overflow on 32 bit platforms
2019-05-29 00:34:07 +04:00
Luis Azedo
90438ffe78
FS-11846 [mod_kazoo] fix queue cleanup
2019-05-15 13:24:12 +01:00
Luis Azedo
9bfa2fc5e4
FS-11838 [mod_kazoo] handle intercept
2019-05-10 18:41:23 +01:00
lazedo
fdd2acfbfe
FS-11791 [mod_kazoo] fixes & improvements
...
* tweak configuration
* customized att_xfer
* json_api with uuid support
2019-04-18 04:05:31 +01:00
Mike Jerris
a5858c8b9f
Merge pull request #1689 in FS/freeswitch from ~RAZVANC/freeswitch:bugfix/FS-11696-fix-format_fields-init to master
...
* commit '6f15b032955299d3c38915e9e1a81078bf66743e':
FS-11696 [mod_amqp] fix format_fields initialization
2019-04-05 16:01:43 -05:00
lazedo
47b2be3d2e
FS-11748 [mod_kazoo] better handling of interaction-id
...
* transfers
* outgoing channels
* loopback
2019-04-02 17:20:19 +01:00
lazedo
68e3eae826
FS-11742 [mod_kazoo] add Core-UUID to Runtime-Info
2019-04-01 14:38:07 +01:00
lazedo
ece804c9b8
FS-11741 [mod_kazoo] add compare to field option & json_history
2019-03-31 22:17:42 +01:00
lazedo
9eba3a9b99
FS-11741 [mod_kazoo] add kz_node api
2019-03-31 22:14:23 +01:00
lazedo
dc8bc06c64
FS-11732 [mod_kazoo] check otp version for ei_init
2019-03-27 18:01:46 +00:00
Chris Rienzo
049edaa84d
FS-11731 [mod_rayo] fix compile error
2019-03-27 10:29:03 -06:00
lazedo
efafdefe07
FS-10820 [mod_kazoo] add more kazoo interactions
...
* initialize ei
* defaults for definitions
* add kz endpoint
* add kz_bridge
* add setters with encoding
* add tweaks after merged core PRs
2019-03-27 06:13:32 +00:00
Razvan Crainea
6f15b03295
FS-11696 [mod_amqp] fix format_fields initialization
2019-03-08 18:34:51 +02:00
lazedo
df1ac5dbe0
FS-10820 [mod_kazoo] eventstream configuration
2019-01-14 14:24:51 +00:00
Chris Rienzo
2226c3c621
FS-11453 [mod_rayo] convert to fst testing
2018-12-20 10:18:14 -05:00
Chris Rienzo
e0b5df10d6
FS-11453 [mod_rayo] allow text/plain grammar for non-mrcp speech recognizers. Added direction to output component to assist with testing. Fix confidence conversion to NLSML.
2018-12-20 10:18:06 -05:00
Chris Rienzo
6eb2276cd6
FS-11453 [mod_rayo] add support for FS JSON ASR result.
2018-12-20 10:17:57 -05:00
Chris Rienzo
d9d763d2a8
FS-11397 [mod_rayo] add xmlns to exec <response> to make adhearsion's life easier.
2018-09-19 15:36:19 -04:00
Anthony Minessale
d3e320ef56
FS-11346: [core] add api to pass pre-parsed values instead of dial strings to switch_ivr_originate
...
SWITCH_DECLARE(switch_status_t) switch_dial_handle_create(switch_dial_handle_t **handle);
SWITCH_DECLARE(void) switch_dial_handle_destroy(switch_dial_handle_t **handle);
SWITCH_DECLARE(void) switch_dial_handle_add_leg_list(switch_dial_handle_t *handle, switch_dial_leg_list_t **leg_listP);
SWITCH_DECLARE(void) switch_dial_leg_list_add_leg(switch_dial_leg_list_t *parent, const char *dial_string, switch_dial_leg_t **legP);
SWITCH_DECLARE(void) switch_dial_handle_add_global_var(switch_dial_handle_t *handle, const char *var, const char *val);
SWITCH_DECLARE(void) switch_dial_handle_add_global_var_printf(switch_dial_handle_t *handle, const char *var, const char *fmt, ...);
SWITCH_DECLARE(switch_status_t) switch_dial_handle_add_leg_var(switch_dial_leg_t *leg, const char *var, const char *val);
SWITCH_DECLARE(switch_status_t) switch_dial_handle_add_leg_var_printf(switch_dial_leg_t *leg, const char *var, const char *fmt, ...);
SWITCH_DECLARE(int) switch_dial_handle_get_peers(switch_dial_handle_t *handle, int idx, char **array, int max);
SWITCH_DECLARE(int) switch_dial_handle_get_vars(switch_dial_handle_t *handle, int idx, switch_event_t **array, int max);
SWITCH_DECLARE(switch_event_t *) switch_dial_handle_get_global_vars(switch_dial_handle_t *handle);
SWITCH_DECLARE(switch_event_t *) switch_dial_leg_get_vars(switch_dial_leg_t *leg);
SWITCH_DECLARE(int) switch_dial_handle_get_total(switch_dial_handle_t *handle);
SWITCH_DECLARE(void) switch_ivr_orig_and_bridge(switch_core_session_t *session, const char *data, switch_dial_handle_t *dh);
add switch_dial_handle_t *dh to end of args for switch_ivr_originate
2018-08-22 18:20:13 +00:00
Mike Jerris
efc6515e43
Merge pull request #1567 in FS/freeswitch from rayo-exec-dialplan-app to master
...
* commit '01bac4cc5f02f34f2fb3af87aa0bd055c8657adb':
FS-11316 [mod_rayo] Add FS API support
FS-11316 [mod_rayo] Add dialplan app execution component
2018-08-08 16:40:02 +00:00
Chris Rienzo
01bac4cc5f
FS-11316 [mod_rayo] Add FS API support
2018-08-07 20:08:20 -04:00
Chris Rienzo
479c8a4a4e
FS-11316 [mod_rayo] Add dialplan app execution component
2018-08-07 20:07:29 -04:00
Andrey Volk
87f004bc16
FS-11271: [Build-System] Add mod_cdr_mongodb to the Windows build.
2018-08-01 00:52:01 +03:00
Andrey Volk
671da28796
FS-11263: [Build-System] Move FreeSWITCH build system to Visual Studio 2017 on Windows.
2018-07-24 07:21:55 +00:00
Brian West
b3ff29eb5c
FS-10908: [mod_amqp] AMQP routing key (format_fields) formation broke and invalid reads reported by valgrind #resolve
2018-07-24 07:21:48 +00:00
Andrey Volk
2e7e6221f8
FS-11083: [Build-System] Add mod_cdr_sqlite to the Windows build.
2018-07-24 07:21:46 +00:00
Andrey Volk
5c04c4ad6b
FS-11082: [Build-System] Add mod_odbc_cdr to the Windows build.
2018-07-24 07:21:46 +00:00
Andrey Volk
cd0fdcd58b
FS-11076: [mod_cdr_pg_csv] Add mod_cdr_pg_csv to the Windows build.
2018-07-24 07:21:44 +00:00
Andrey Volk
fe9f2713b4
FS-11075: [mod_amqp] Add mod_amqp to the Windows build.
2018-07-24 07:21:44 +00:00
Brian West
4fc7ee7720
FS-10908: [mod_amqp] AMQP routing key (format_fields) formation broke and invalid reads reported by valgrind #resolve
2018-07-24 07:21:39 +00:00
Brian West
243f9f33b6
FS-10749: [mod_amqp] Crash on unload after mod_amqp reloaded with command + incorrect command behavior #resolve
2018-07-24 07:21:38 +00:00
Mike Jerris
938ec99950
Merge pull request #1485 in FS/freeswitch from ~DIASBRUNO/freeswitch:bugfix/FS-10777-freeswitch-failing-to-link-to-process to master
...
* commit 'ab97ad0b5f3093e94377ae568aeeba0ccea5813d':
FS-10777 [mod_erlang_event] #resolve
2018-04-06 19:52:57 +00:00
Bruno Dias
ab97ad0b5f
FS-10777 [mod_erlang_event] #resolve
2018-03-09 13:41:24 -03:00
Sebastian Kemper
eded5965a4
FS-10939 mod_cdr_mongodb: fix format truncation warnings with gcc 7
...
gcc 7 complains about possible format truncation:
mod_cdr_mongodb.c: In function 'my_on_reporting':
mod_cdr_mongodb.c:242:45: error: '%d' directive output may be truncated writing between 1 and 10 bytes into a region of size 4 [-Werror=format-truncation=]
snprintf(idx_buffer, sizeof(idx_buffer), "%d", callflow_idx);
The char * idx_buffer has a size of 4 Bytes, and according to gcc's
calculation it is possible that up to 11 Bytes might be copied into it
via int bson_idx.
This commit adds an extra 8 Bytes to char * idx_buffer, which silences
the warnings.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2018-02-03 19:00:09 +01:00
Mike Jerris
87bb7cb5fb
Revert "FS-10820 [mod_kazoo] eventstream configuration"
...
This reverts commit bb4499ec24bd7a5cadb90eab1b1a05515d38eaa2.
This commit breaks the build. Please correct and re-submit
2018-01-25 15:51:44 -06:00
Mike Jerris
11f8647ec2
Merge pull request #1451 in FS/freeswitch from ~LAZEDO/freeswitch:feature/FS-10820 to master
...
* commit 'bb4499ec24bd7a5cadb90eab1b1a05515d38eaa2':
FS-10820 [mod_kazoo] eventstream configuration
2018-01-19 18:57:14 +00:00
lazedo
bb4499ec24
FS-10820 [mod_kazoo] eventstream configuration
2018-01-11 16:03:09 +00:00
Praveen Kumar
d311a06a83
FS-10833: [mod_amqp] memory leak on reconnection attempt to RabbitMQ broker
...
Memory leak happening during reconnection attempt after connectivity loss with
RabbitMQ broker.
With these changes, memory leak issue has been addressed and the object has
been properly freed.
2017-12-08 04:23:43 +05:30
Seven Du
e99fa26257
FS-10832 #resolve
2017-12-07 23:55:29 +08:00
Praveen Kumar
97d6bee3fc
FS-10805: Memory Leak fix in mod_amqp
...
Memory allocated to hash iterators and hash tables isn't released
during module shutdown.
With these changes, memory allocated to hash iterators and hash tables
will be freed properly.
2017-12-01 01:51:19 +05:30
Andrey Volk
ea8c3be8ec
FS-10541: [Build-System] Move OpenSSL to props with BaseDir on windows.
2017-10-07 22:50:48 +03:00
Anthony Minessale
aef2487077
FS-10601: [freeswitch-core] accomodate should be accommodate #resolve
2017-08-21 17:09:24 -05:00