Travis Cross
df559e0aac
Add back goodness refactored out
2014-08-30 01:32:57 +00:00
Travis Cross
9481d9843c
Fix comment spelling
2014-08-30 01:19:09 +00:00
Travis Cross
6f2eac6876
Fix comment spelling
2014-08-30 00:52:16 +00:00
Travis Cross
63f16425bd
Refactor mod_hash limit_release_hash a bit
2014-08-29 21:44:04 +00:00
Brian West
3e24b3e2c2
FS-6775 #resolve
2014-08-29 09:55:00 -05:00
Travis Cross
dc88617c99
Lower log level of limit increases and releases
...
In some configurations where many limits are used, the limit increases
and releases were generating a lot of noise and making it harder to
see when limits were exceeded, which was at the same log level.
2014-08-28 01:40:36 +00:00
Anthony Minessale
0f1494ae06
Improve conference recording
2014-08-26 09:52:55 -05:00
Travis Cross
b2f59dd200
Add warning when using HTTPS with mod_curl
...
mod_curl currently does not verify the authenticity of the peer's
certificate, and does not verify whether the common name on the
certificate matches the server. This makes mod_curl initiated TLS
connections completely insecure. We should fix this, but until we do,
we'll warn people that it's not doing what they may think it is.
ref: http://curl.haxx.se/libcurl/c/CURLOPT_SSL_VERIFYPEER.html
ref: http://curl.haxx.se/libcurl/c/CURLOPT_SSL_VERIFYHOST.html
2014-08-21 22:24:04 +00:00
Travis Cross
f2ca3c5211
Decode params to curl_sendfile
...
`curl_sendfile` generates a multipart message with Content-Type:
multipart/form-data with no separate Content-Type headers in the parts
for each non-file argument. These parts therefore default to
text/plain. However, prior to this commit, we were putting the URL
encoded POST data into these parts, which is not correct. We should
be putting raw text into the parts.
With this commit, we urldecode each argument key and value before
composing the multipart message.
See:
http://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.2
2014-08-20 10:37:24 +00:00
Brian West
8ebfca9e3d
Merge pull request #24 in FS/freeswitch from ~STANGOR/freeswitch:master to master
...
* commit '4d0b875d4e7b2ee1fc8f30591b5c98c61080fae5':
fix mod_fifo presence https://jira.freeswitch.org/browse/FS-6732
2014-08-14 14:02:27 -05:00
Mike Jerris
5eb01b519e
Merge pull request #25 in FS/freeswitch from ~STEVEAYRE/freeswitch:master to master
...
* commit '05ef18948d3870c4afcd82ce32e164e4a152a8e1':
add uptime api to mod_commands
2014-08-13 13:37:17 -05:00
Stan Gor
4d0b875d4e
Merging in latest from upstream (FS/freeswitch:refs/heads/master)
...
* commit 'b60df39b96b05b6c3cf220d5049ea5fc20dfa6e1':
mod_http_cache: fix configuration so that carriage returns or other whitespace is OK around S3 keys
mod_http_cache: fixed S3 URL parser to allow mybucketsubdomain.com.s3.amazonaws.com
2014-08-12 22:08:44 -05:00
Chris Rienzo
b60df39b96
mod_http_cache: fix configuration so that carriage returns or other whitespace is OK around S3 keys
2014-08-12 16:28:42 -04:00
Chris Rienzo
3b45ef90ae
mod_http_cache: fixed S3 URL parser to allow mybucketsubdomain.com.s3.amazonaws.com
2014-08-12 16:07:56 -04:00
Steven Ayre
05ef18948d
add uptime api to mod_commands
2014-08-12 14:06:15 +01:00
stangor
c966dc865a
fix mod_fifo presence
...
https://jira.freeswitch.org/browse/FS-6732
2014-08-11 14:08:10 -07:00
Brian West
aeced06c6c
Merge pull request #23 in FS/freeswitch from ~DDRAGIC/freeswitch:fix_mod_blacklist to master
...
* commit 'fe2a6e8acae2e8104c9480361b1561ee3f120bf1':
FS-6620 mod_blacklist fix not deleting entries from list
2014-08-11 14:54:42 -05:00
Travis Cross
8414c498cf
Fix line endings per .gitattributes
2014-08-08 15:24:42 +00:00
Anthony Minessale
52ed525b97
fix channel count in embedded file formats
2014-08-06 00:25:04 +05:00
Dušan Dragić
fe2a6e8aca
FS-6620 mod_blacklist fix not deleting entries from list
2014-08-03 11:51:46 +02:00
Anthony Minessale
fb274514df
add switch_separate_file_params function so when using relative paths with bracketed params the full path can be constructed with the params in tact
2014-08-01 22:57:40 +05:00
Travis Cross
5a7144c44a
Add DELETE request support to mod_curl
2014-07-31 04:07:36 +00:00
Anthony Minessale
004c5ab2b0
fix some issues with duplicate chat events and some cleanup
2014-07-24 22:58:12 +05:00
Brian West
d9eafdf0cb
FS-6681: fix dup of audio/wav and add audio/x-wav
2014-07-24 08:30:44 -05:00
Anthony Minessale
7596689865
add chat to demo
2014-07-24 10:13:39 +05:00
Anthony Minessale
f0d1be5f41
reduce radius for auto positioning
2014-07-23 01:05:55 +05:00
Anthony Minessale
025e65a0cd
fix resampler issue caused by refactoring impacting audio quality of resampled calls in the conference
2014-07-23 01:04:35 +05:00
Anthony Minessale
93983e63cc
revert fd9d77feee5b6d57b5266eb671c8ea238c28a471
2014-07-23 01:01:44 +05:00
Moises Silva
d6574e8c0f
dos2unix a bunch of files
...
For some reason these files would get marked as modified
just after a fresh clone on Linux
2014-07-22 15:04:28 -04:00
Travis Cross
a537d80372
Add new module: mod_prefix
...
mod_prefix is an in-memory data store optimized for fast lookups
according to the longest prefix match (LPM) rule.
Tables of key-value string pairs in JSON format can be loaded at
startup via configuration and at runtime via the API.
The implementation uses a bitwise trie (aka binary prefix tree), so
arbitrary string keys are supported.
2014-07-22 15:28:31 +00:00
Anthony Minessale
997e921721
add transfer command
2014-07-19 00:32:09 +05:00
Anthony Minessale
fd9d77feee
add clear channel for mono participants while in a conference with 3d callers
2014-07-12 03:31:26 +05:00
Anthony Minessale
a03963fb92
fold livetables into verto obj and expose moderator mode
2014-07-12 03:27:08 +05:00
Brian West
07f4c6204e
FS-6646 --resolve
2014-07-11 11:03:22 -05:00
Michael Jerris
f2887fb89e
CID:1224272 Dereference after null check. member can not actually be NULL in any of the scenarios calling this function
2014-07-09 14:32:38 -04:00
Mike Jerris
68a8bb7fff
Merge pull request #9 in FS/freeswitch from ~PFOURNIER/freeswitch:feature/fax_enable_tep to master
...
* commit '0fb179acf2246b896f1a66cfb96da68e9d2675f7':
Add new option to request TEP to be used for an outbound fax call
2014-07-09 11:54:16 -05:00
Brian West
f18a773ca2
Merge pull request #8 in FS/freeswitch from ~PFOURNIER/freeswitch:bugfix/fax_disable_ecm to master
...
* commit '5d31c9b9fe2ae6dead163c60974a41fec4fac3fc':
It was impossible to disable ECM with T.38 in gateway mode
2014-07-09 10:48:56 -05:00
Brian West
a79a9ea9ed
FS-6373
2014-07-09 08:25:54 -05:00
Patrice Fournier
0fb179acf2
Add new option to request TEP to be used for an outbound fax call
2014-07-08 01:06:32 -04:00
Patrice Fournier
5d31c9b9fe
It was impossible to disable ECM with T.38 in gateway mode
2014-07-08 01:05:28 -04:00
Travis Cross
c17d58b856
Refactor the curl PUT read callback
2014-07-04 07:47:04 +00:00
Travis Cross
2fea35282f
Advance the data_stream data pointer
2014-07-04 07:43:59 +00:00
Travis Cross
a84b76be2a
Add PUT support to mod_curl curl
api and app
...
With both the `curl` api command and application, you can now ask for
data to be PUT where previously it could only be sent via POST.
2014-07-04 07:40:13 +00:00
Anthony Minessale
9e0d1d6841
only count unmuted channels in positioning
2014-07-02 22:57:29 +05:00
Anthony Minessale
f0d16d0d18
expand positioning api usage
2014-07-02 04:49:16 +05:00
Anthony Minessale
7f9348dbc3
fix volume adjustments in stereo conference
2014-06-30 23:39:42 +05:00
Anthony Minessale
41a7d1cf31
some refactoring to make new stereo stuff more stable
2014-06-30 23:00:45 +05:00
Anthony Minessale
591ea9e9ca
tweaks
2014-06-30 04:39:46 +05:00
Anthony Minessale
0bb7f1659f
check for member channel
2014-06-30 01:59:21 +05:00
Anthony Minessale
0ac78cacc3
add openal code to mod_conference
2014-06-30 01:23:08 +05:00