Hunyadvári Péter
bec68edb16
FS-8893: [mod_sofia] Add variables to sofia::register/unregister events
2018-04-03 10:42:04 +02:00
Hunyadvári Péter
74f47cb0ed
FS-11046: [mod_dptools] Better logging for rename_function
2018-04-03 10:15:33 +02:00
Mike Jerris
07bbb8c226
Merge pull request #1473 in FS/freeswitch from ~SEBASTIAN/freeswitch:FS-10939-fix-format-truncation-warnings-in-mod_cdr_mongodb to master
...
* commit 'eded5965a4b26572aa254bab63771440934494bd':
FS-10939 mod_cdr_mongodb: fix format truncation warnings with gcc 7
2018-03-26 18:27:44 +00:00
Hunyadvári Péter
069da397f5
Improve recording transfer
...
Use the same method everywhere
Move the bug without stopping and starting the recording over
It was broken in some circumstances and also some settings were lost
FS-8900 --resolve
2018-03-20 09:20:37 +01:00
Bruno Dias
ab97ad0b5f
FS-10777 [mod_erlang_event] #resolve
2018-03-09 13:41:24 -03:00
Mike Jerris
dd0bb0e331
Merge pull request #1472 in FS/freeswitch from ~STEPHALNET/freeswitch:FS-6816-sofia_send_callee_id-should-not-always to master
...
* commit '159c4ce95d1314bde9f747b0a0857c46fbf25a4f':
FS-6816 [mod_sofia] Set empty callee id if `_undef_`
2018-03-05 17:36:09 +00:00
lazedo
834132d128
FS-10969 [mod_spandsp] increase tone limit to 128
2018-02-20 18:01:14 +00:00
Andrey Volk
1284fbb027
FS-10493: [mod_callcenter] Replace core uuid with cc_instance_id taken from callcenter.conf.xml
2018-02-14 00:53:22 +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
Italo Rossi
0781fafb7c
Merge pull request #1464 in FS/freeswitch from ~BODJI/freeswitch:FS-10299-mod_callcenter-database-blocking to master
...
* commit 'b185cc6e2471bd83e560f9c75a5828537848418e':
FS-10299: [mod_callcenter] Add an option to disable global database lock on mod_callcenter
2018-02-02 14:27:49 +00:00
Stephane Alnet
159c4ce95d
FS-6816 [mod_sofia] Set empty callee id if _undef_
...
In some scenarios (e.g. MetaSwitch interop) the `display` field of callee-id should be left empty instead of being overwritten with the number.
As is done in other places, we allow for `_undef_` to mean "leave the field empty".
2018-02-02 10:19:03 +01:00
Marc Olivier Chouinard
3d9365edbb
FS-10496: [mod_v8] Fixing regression from FS-10496 when no settings exist in v8.conf.
2018-01-28 10:18:58 -05: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
Italo Rossi
19e543ba3d
FS-10521 FS-10612 [mod_callcenter] Member exit reason set to EXIT_WITH_KEY when it should be TIMEOUT and only set EXIT_WITH_KEY if the key pressed is set at cc_exit_keys
2018-01-25 10:49:59 -03:00
Mathieu Bodjikian (MacBook-Pro-de-Mathieu.local)
b185cc6e24
FS-10299: [mod_callcenter] Add an option to disable global database lock on mod_callcenter
2018-01-24 20:46:39 +01:00
Mike Jerris
3f8585f636
Merge pull request #1371 in FS/freeswitch from ~ANDYWOLK/freeswitch:feature/FS-10611-add-domain_data-command-to-retrieve to master
...
* commit '233481c32efadb1782684dcf45c59809eb3fe157':
FS-10611: [mod_commands] Add domain_data command to retrieve domain information
2018-01-19 19:55:05 +00:00
Andrey Volk
233481c32e
FS-10611: [mod_commands] Add domain_data command to retrieve domain information
2018-01-19 22:50:26 +03:00
Mike Jerris
64780ac1b4
Merge pull request #1334 in FS/freeswitch from ~ANDYWOLK/freeswitch:feature/FS-10496-speedup-javascript-enabling-code to master
...
* commit 'c1280938bf5f9821df846bd2c6871ce0ca24620b':
FS-10496: [mod_v8] Speedup JavaScript. Enabling Code Caching.
2018-01-19 19:31:17 +00: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
Hunyadvári Péter
343b343763
FS-10828 [mod_verto] Always renew codec_string on connect
2017-12-06 14:36:19 +01:00
Andrey Volk
c1280938bf
FS-10496: [mod_v8] Speedup JavaScript. Enabling Code Caching.
2017-12-05 14:25:13 +03:00
Andrey Volk
db3e6ec32f
FS-10789: [mod_v8] v8 segs on invalid instruction
2017-12-05 13:56:40 +03: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
Brian West
212eb9b921
Merge pull request #1434 in FS/freeswitch from ~PRAVEEN_KUMAR/freeswitch:bugfix/FS-10728-mod_avmd-backward-compatibility_issue to master
...
* commit '179a659b7f3026c12c63bc4879a24c5f58584349':
FS-10728: [mod_avmd] backward compatibility issue in avmd_main_api
2017-11-15 20:50:39 +00:00
Anthony Minessale
4fabca25ef
FS-10792: [mod_sofia] when behind 1-to-1 NAT, console logs invalid handle #resolve
2017-11-15 13:04:15 -06:00
Italo Rossi
32954c1b91
FS-10772 - [mod_callcenter] commit 404c69698ed7a4ff215cf2d430b6a1721c693eb1 added an invalid WHERE syntax, fixed.
2017-11-03 14:47:19 -03:00
Italo Rossi
298a468edf
FS-10771 - [mod_callcenter] s/member_channel/member_session when session logging
2017-11-03 13:38:04 -03:00
Anthony Minessale
873a7bbdff
FS-10769: [mod_av,mod_conference] Lipsync issues in conference recording #resolve
2017-11-02 14:03:21 -05:00
Anthony Minessale
7728273b39
FS-10768: [mod_conference] Fix div by 0 err in conference config parsing #resolve
2017-11-02 14:01:47 -05:00
Praveen Kumar
179a659b7f
FS-10728: [mod_avmd] backward compatibility issue in avmd_main_api
...
avmd_start_app flow will break if 'inbound_channel'/'outbound_channel'
both has been set and the avmd_start_app invoked for inbound call leg.
With this change, it'll be able to work even if we set
'inbound_channel'/'outbound_channel' both.
2017-11-02 12:52:23 +05:30
Anthony Minessale
03576e82b8
FS-10757: [mod_conference] Race condition freeing avatar image #resolve
2017-10-25 14:20:45 -05:00
Brian West
3300661137
FS-10751: [mod_av] Add parsing for TRACE log level in AV
2017-10-25 13:11:19 -05:00
Anthony Minessale
bf98422ce6
FS-10754: [mod_conference] Conference Improvements #resolve
2017-10-25 12:27:20 -05:00
Anthony Minessale
9108c64c9e
FS-10752: [mod_av] Remove support for AVENC which is not working on deb9 #resolve
2017-10-23 14:14:54 -05:00
Anthony Minessale
168cb620b9
FS-10751: [mod_av] Add parsing for TRACE log level in AV #resolve
2017-10-23 13:57:12 -05:00
Luis Azedo
78a0ed5de2
FS-10744 [mod_conference] provide call-id for conference fetch
2017-10-20 13:41:34 +01:00
Italo Rossi
15455f7060
FS-10738 [mod_callcenter] - setting bridged = 0 if member give up too early
2017-10-17 20:32:35 -03:00
Italo Rossi
94e943963f
FS-10738 [mod_callcenter] - Do not set state to Idle if On Demand agents do not answer call
2017-10-17 16:26:57 -03:00
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
86911858e8
FS-10527: [mod_av] AV tweaks
2017-09-27 12:58:14 -05:00
Anthony Minessale
503db7b23f
FS-10675: [mod_fifo] Wrap Up + fifo_caller_exit_key in mod_fifo #resolve
2017-09-18 17:23:45 -05:00
Anthony Minessale
5bb6e3485e
FS-10677
2017-09-15 17:02:06 -05:00
Italo Rossi
75c56a0007
FS-10661: [mod_callcenter] Making cc_export_vars work with uuid-standby agents
2017-09-14 22:18:20 -03:00
Italo Rossi
77dcd007ad
FS-10660: [mod_callcenter] Park agent session before play cc_warning_tone - avoid double playback causing distorted audio
2017-09-14 21:02:56 -03:00
Italo Rossi
7f31967a31
FS-10666: [mod_callcenter] Adding callcenter_break agent api
...
callcenter_break agent <uuid> can be called with an uuid that represents
an outbound session created to call an agent.
The current behavior of mod_callcenter is to keep watching this channel
until it is hangup, once the hangup happens the bridge-agent-end and
member-queue-end events are fired, agent is released on the database
so it can receive more calls and member is also updated on database.
If you do not want to the agent channel hangup to release the agent you can
call this app with the agent session uuid and the agent will be released and
available to receive more calls. This is useful when the agent is located on a
remote freeswitch box and transfer the call internally, the original leg between
the first FreeSWITCH and the remote box remains live and the agent will only be
Available when the original call hangup.
2017-09-13 17:39:43 -03:00
Anthony Minessale
2aea0c329b
FS-10468: [mod_verto] Attended Transfer from Mod Verto leaves one channel in limbo. #resolve
2017-09-11 14:47:56 -05:00
lazedo
51b96c33cb
FS-10623 [mod_conference] emit conference vars in events and allow
...
setting them in profiles
2017-09-08 23:11:43 +01:00