]> git.ipfire.org Git - thirdparty/freeswitch.git/log
thirdparty/freeswitch.git
11 years agoHandle gcc's overzealous unused-result warning
Travis Cross [Fri, 22 Aug 2014 19:39:11 +0000 (19:39 +0000)] 
Handle gcc's overzealous unused-result warning

Modern static analyzers warn when a variable is set but not used.  GCC
warns when the result of a function marked as
`__attribute__((warn_unused_result))` is not set to some variable,
even when the function is cast to `(void)`, which is the recognized
way of indicating the intent to ignore the result.  We treat all
warnings as errors.

The combination of behaviors here makes it difficult if we really
don't care about the result of the function; the obvious workarounds
are precluded.

GCC's maintainers don't consider this to be a bug:

  Why do you think this is a bug?  warn_unused_result is for cases where
  "not checking the result is either a security problem or always a
  bug".

  https://gcc.gnu.org/bugzilla/show_bug.cgi?id=25509#c1

GLIBC however marks functions like `read` and `write` with this
attribute.  While it certainly in most cases is correct to act on
their return value, in some cases we really just don't care.

So when we see that we're building with GCC, and that we're building
with all warnings enabled, we'll just pass -Wno-unused-result to
disable the warning.

ref: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=25509
ref: https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html

11 years agoAdding the ability to add a radius param when a channel variable is not set in mod_xm...
William King [Fri, 22 Aug 2014 06:17:23 +0000 (23:17 -0700)] 
Adding the ability to add a radius param when a channel variable is not set in mod_xml_radius

11 years agoHelp the static analyzer in `handle_ice`
Travis Cross [Fri, 22 Aug 2014 03:30:32 +0000 (03:30 +0000)] 
Help the static analyzer in `handle_ice`

Clang's static analyzer thinks we could be using `hosts` here when it
is NULL.  We probably weren't, but it's easy to see how it could think
so.  We were checking whether `from_addr` matched `ice->addr` three
times, and between the second on third time we might have modified the
`ice->addr`; however we only get there if it matched the second time,
so we could only make it not match at that point and avoid the third
branch.  We can't make it match where it did not before.

We'll simplify the logic a bit here so static analyzers (and humans)
can hopefully see this more readily.

11 years agoReturn NULL from `sub_alloc` for zero size
Travis Cross [Fri, 22 Aug 2014 02:47:04 +0000 (02:47 +0000)] 
Return NULL from `sub_alloc` for zero size

When zero was passed for the size to `sub_alloc`, we were passing this
size on to `malloc` or `calloc`, which is unusual enough that static
analyzers warn about this (POSIX says that either NULL or a pointer
will be returned).

We'll instead just return NULL right away.

11 years agoFix spelling "Couldnt" -> "Couldn't"
Travis Cross [Fri, 22 Aug 2014 02:19:45 +0000 (02:19 +0000)] 
Fix spelling "Couldnt" -> "Couldn't"

11 years agoHandle zero channels when allocating for resampler
Travis Cross [Fri, 22 Aug 2014 01:59:11 +0000 (01:59 +0000)] 
Handle zero channels when allocating for resampler

When the number of channels was zero, we were calling malloc with a
size of zero.  While defined, this is unusual.  And since we're
initializing the speex resampler as though there were one channel in
this case, we should probably just allocate the space for it.

11 years agoRefactor to avoid warning about realloc usage
Travis Cross [Fri, 22 Aug 2014 01:33:22 +0000 (01:33 +0000)] 
Refactor to avoid warning about realloc usage

Clang's static analyzer noticed the result of realloc was being
assigned to a pointer of a different type than was used to calculate
the new size.  We can make things simpler and more idiomatic here by
using the correct pointer type and letting C's pointer arithmetic
automatically handle some multiplication.

We also use the distributive property here to simplify the calculation
for memset.

11 years agoRemove dead assignments in `switch.c`
Travis Cross [Fri, 22 Aug 2014 01:20:42 +0000 (01:20 +0000)] 
Remove dead assignments in `switch.c`

11 years agoHandle null argv in `switch.c`
Travis Cross [Fri, 22 Aug 2014 01:09:05 +0000 (01:09 +0000)] 
Handle null argv in `switch.c`

11 years agoRemove dead assignment
Travis Cross [Fri, 22 Aug 2014 00:58:53 +0000 (00:58 +0000)] 
Remove dead assignment

11 years agoAvoid using undefined memory in `switch_fulldate_cmp`
Travis Cross [Fri, 22 Aug 2014 00:47:22 +0000 (00:47 +0000)] 
Avoid using undefined memory in `switch_fulldate_cmp`

The `switch_split_date` and `switch_split_time` functions only set as
many variables as they believe exist values in the input string.
Since we didn't have defaults assigned we would read undefined stack
memory if the input string didn't contain e.g. an hour.

With this commit, we use 1970 if no year is present, January if no
month is present, the first day of the month if none is given, and
zero for each of a missing hour, minute, or second.

11 years agoRefactor `switch_fulldate_cmp`
Travis Cross [Fri, 22 Aug 2014 00:43:27 +0000 (00:43 +0000)] 
Refactor `switch_fulldate_cmp`

We're moving the variable declarations down to the smallest possible
scope (a good idea in general) so we can address the use of undefined
memory by the function in a later commit.

11 years agoAdd warning when using HTTPS with mod_curl
Travis Cross [Thu, 21 Aug 2014 22:17:35 +0000 (22:17 +0000)] 
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

11 years agoDescribe how to hard-wrap text in Emacs
Travis Cross [Thu, 21 Aug 2014 20:37:08 +0000 (20:37 +0000)] 
Describe how to hard-wrap text in Emacs

11 years agoMerge pull request #28 in FS/freeswitch from ~STANGOR/freeswitch:master to master
Brian West [Thu, 21 Aug 2014 18:59:37 +0000 (13:59 -0500)] 
Merge pull request #28 in FS/freeswitch from ~STANGOR/freeswitch:master to master

* commit 'c736cf2f22e4f0a5d490db995ebaed69b9963daa':
  Add sofia gateway parameter "destination-prefix"
  FS-5497 add sofia gateway parameter destination-prefix in case you need to send Invites with prefix only to this gateway

11 years agoskypopen: new skype client in install/install.pl
Giovanni Maruzzelli [Thu, 21 Aug 2014 18:50:30 +0000 (20:50 +0200)] 
skypopen: new skype client in install/install.pl

11 years agomod_graylog2: channel variables can now be automatically added as gelf additional...
Chris Rienzo [Thu, 21 Aug 2014 15:06:13 +0000 (11:06 -0400)] 
mod_graylog2: channel variables can now be automatically added as gelf additional fields in logs w/ session UUID

11 years agomod_skinny: roll back, these are not expected to be null terminated, they are fixed...
Nathan Neulinger [Wed, 20 Aug 2014 19:50:46 +0000 (14:50 -0500)] 
mod_skinny: roll back, these are not expected to be null terminated, they are fixed length

11 years agomod_skinny: fix potential buffer size issue CID: 1214145 1214146
Nathan Neulinger [Wed, 20 Aug 2014 19:32:02 +0000 (14:32 -0500)] 
mod_skinny: fix potential buffer size issue CID: 1214145 1214146

11 years agoDecode params to `curl_sendfile`
Travis Cross [Wed, 20 Aug 2014 10:22:27 +0000 (10:22 +0000)] 
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

11 years agoMerge branch 'master' of https://stash.freeswitch.org/scm/~stangor/freeswitch
Stan Gor [Tue, 19 Aug 2014 19:01:43 +0000 (12:01 -0700)] 
Merge branch 'master' of https://stash.freeswitch.org/scm/~stangor/freeswitch

11 years agoAdd sofia gateway parameter "destination-prefix"
Stan Gor [Tue, 19 Aug 2014 18:54:09 +0000 (11:54 -0700)] 
Add sofia gateway parameter "destination-prefix"

FS-5497 add sofia gateway parameter destination-prefix in case you need to send Invites to your provider with prefix only to this gateway

11 years agotweak some cid display issues
Anthony Minessale [Mon, 18 Aug 2014 22:25:24 +0000 (03:25 +0500)] 
tweak some cid display issues

11 years agotesting new hook FS-6677 #Waiting #comment this is a test
Giovanni Maruzzelli [Mon, 18 Aug 2014 19:55:03 +0000 (21:55 +0200)] 
testing new hook FS-6677 #Waiting #comment this is a test

11 years agotesting new hook TKT-6677 #Waiting #comment this is a test
Giovanni Maruzzelli [Mon, 18 Aug 2014 19:46:40 +0000 (21:46 +0200)] 
testing new hook TKT-6677 #Waiting #comment this is a test

11 years agotesting new hook FS-6677 #new_state #comment this is a test
Giovanni Maruzzelli [Mon, 18 Aug 2014 19:39:56 +0000 (21:39 +0200)] 
testing new hook FS-6677 #new_state #comment this is a test

11 years agoFS-6696 VS2010 Express fixes for pa and v8
Jeff Lenk [Sun, 17 Aug 2014 19:28:06 +0000 (13:28 -0600)] 
FS-6696 VS2010 Express fixes for pa and v8

11 years agofix VS2010 build warning
Jeff Lenk [Sat, 16 Aug 2014 23:22:41 +0000 (18:22 -0500)] 
fix VS2010 build warning

11 years agoFS-6738 #comment fix mac build introduced by 0ee48c2
Seven Du [Sat, 16 Aug 2014 02:08:39 +0000 (10:08 +0800)] 
FS-6738 #comment fix mac build introduced by 0ee48c2

11 years agonm
Anthony Minessale [Fri, 15 Aug 2014 21:00:38 +0000 (02:00 +0500)] 
nm

11 years agofix typo
Anthony Minessale [Fri, 15 Aug 2014 20:52:03 +0000 (01:52 +0500)] 
fix typo

11 years agoforce sofia rebuild
Anthony Minessale [Fri, 15 Aug 2014 20:34:30 +0000 (01:34 +0500)] 
force sofia rebuild

11 years agoFS-6738 #comment can you test this patch and see if the tcp keepalive can detect...
Anthony Minessale [Fri, 15 Aug 2014 19:43:20 +0000 (00:43 +0500)] 
FS-6738 #comment can you test this patch and see if the tcp keepalive can detect the timeout

11 years agocopy changes from verto ws.c to sofia
Anthony Minessale [Fri, 15 Aug 2014 19:37:43 +0000 (00:37 +0500)] 
copy changes from verto ws.c to sofia

11 years agoFS-5497 add sofia gateway parameter destination-prefix in case you need to send Invit...
stangor [Fri, 15 Aug 2014 00:28:14 +0000 (17:28 -0700)] 
FS-5497 add sofia gateway parameter destination-prefix in case you need to send Invites with prefix only to this gateway

11 years agoMerge pull request #21 in FS/freeswitch from ~PFOURNIER/freeswitch:refer_event to...
William King [Thu, 14 Aug 2014 19:44:45 +0000 (14:44 -0500)] 
Merge pull request #21 in FS/freeswitch from ~PFOURNIER/freeswitch:refer_event to master

* commit 'd1abf274d53958566e4a23e02b6168061c098827':
  REFER_EVENT is missing from the message names array

11 years agoMerge pull request #24 in FS/freeswitch from ~STANGOR/freeswitch:master to master
Brian West [Thu, 14 Aug 2014 19:02:27 +0000 (14:02 -0500)] 
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

11 years agoFS-6739 #resolve
Anthony Minessale [Thu, 14 Aug 2014 14:40:47 +0000 (19:40 +0500)] 
FS-6739 #resolve

11 years agoCleanup whitespace
Travis Cross [Wed, 13 Aug 2014 19:16:18 +0000 (19:16 +0000)] 
Cleanup whitespace

11 years agolibzrtp: update zrtp_sleep for modern libc
Peter Wu [Wed, 6 Aug 2014 08:19:03 +0000 (10:19 +0200)] 
libzrtp: update zrtp_sleep for modern libc

usleep is deprecated and disabled in glibc 2.12 unless requested. Use
nanosleep instead if available.

This fixes the following compiler warning:

    ./src/zrtp_iface_scheduler.c: In function 'zrtp_sleep':
    ./src/zrtp_iface_scheduler.c:96:2: warning: implicit declaration of
    function 'usleep' [-Wimplicit-function-declaration]
      usleep(msec*1000);
      ^

11 years agolibsrtp: do not include unnecessary sources
Peter Wu [Wed, 6 Aug 2014 11:03:53 +0000 (13:03 +0200)] 
libsrtp: do not include unnecessary sources

These two files should only be built when OpenSSL is not enabled. See
the configure script of the original sources and Makefile from upstream.
(RNG_EXTRA_OBJS)

Fixes a -Wimplicit-function-declaration warning.

11 years agoFix copy-paste error in '-certs' error message
Peter Wu [Fri, 1 Aug 2014 18:32:27 +0000 (20:32 +0200)] 
Fix copy-paste error in '-certs' error message

11 years agoMerge pull request #25 in FS/freeswitch from ~STEVEAYRE/freeswitch:master to master
Mike Jerris [Wed, 13 Aug 2014 18:37:17 +0000 (13:37 -0500)] 
Merge pull request #25 in FS/freeswitch from ~STEVEAYRE/freeswitch:master to master

* commit '05ef18948d3870c4afcd82ce32e164e4a152a8e1':
  add uptime api to mod_commands

11 years agoMerging in latest from upstream (FS/freeswitch:refs/heads/master)
Stan Gor [Wed, 13 Aug 2014 03:08:44 +0000 (22:08 -0500)] 
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

11 years agomod_http_cache: fix configuration so that carriage returns or other whitespace is...
Chris Rienzo [Tue, 12 Aug 2014 20:28:42 +0000 (16:28 -0400)] 
mod_http_cache: fix configuration so that carriage returns or other whitespace is OK around S3 keys

11 years agomod_http_cache: fixed S3 URL parser to allow mybucketsubdomain.com.s3.amazonaws.com
Chris Rienzo [Tue, 12 Aug 2014 20:07:56 +0000 (16:07 -0400)] 
mod_http_cache: fixed S3 URL parser to allow mybucketsubdomain.com.s3.amazonaws.com

11 years agoadd uptime api to mod_commands
Steven Ayre [Tue, 12 Aug 2014 13:06:15 +0000 (14:06 +0100)] 
add uptime api to mod_commands

11 years agofix mod_fifo presence
stangor [Mon, 11 Aug 2014 21:08:10 +0000 (14:08 -0700)] 
fix mod_fifo presence
https://jira.freeswitch.org/browse/FS-6732

11 years agoMerge pull request #23 in FS/freeswitch from ~DDRAGIC/freeswitch:fix_mod_blacklist...
Brian West [Mon, 11 Aug 2014 19:54:42 +0000 (14:54 -0500)] 
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

11 years agodon't overwrite autodial ext from cookie when supplied on the input hash
Anthony Minessale [Mon, 11 Aug 2014 19:29:45 +0000 (00:29 +0500)] 
don't overwrite autodial ext from cookie when supplied on the input hash

11 years agoadd homer capture line to websocket transport
Anthony Minessale [Mon, 11 Aug 2014 16:02:25 +0000 (21:02 +0500)] 
add homer capture line to websocket transport

11 years agoFS-6679 #resolve
Anthony Minessale [Fri, 8 Aug 2014 21:12:56 +0000 (02:12 +0500)] 
FS-6679 #resolve

11 years agoFix line endings per .gitattributes
Travis Cross [Fri, 8 Aug 2014 15:24:42 +0000 (15:24 +0000)] 
Fix line endings per .gitattributes

11 years agoFS-6692 #resolve
Anthony Minessale [Wed, 6 Aug 2014 16:35:53 +0000 (21:35 +0500)] 
FS-6692 #resolve

11 years agofix early media vs answer race
Anthony Minessale [Wed, 6 Aug 2014 16:09:03 +0000 (21:09 +0500)] 
fix early media vs answer race

11 years agoFS-6727 allow 1.1 and 1.2, They should probably fix that soon
Brian West [Wed, 6 Aug 2014 13:52:21 +0000 (08:52 -0500)] 
FS-6727 allow 1.1 and 1.2, They should probably fix that soon

11 years agoREFER_EVENT is missing from the message names array
Patrice Fournier [Wed, 6 Aug 2014 03:58:56 +0000 (23:58 -0400)] 
REFER_EVENT is missing from the message names array

REFER_EVENT has been added to switch_core_session_message_types_t
a while ago, but was never added to the message_names[] related array.

11 years agoFS-6667 #comment block sending audio when dmachine is reading
Anthony Minessale [Tue, 5 Aug 2014 20:21:34 +0000 (01:21 +0500)] 
FS-6667 #comment block sending audio when dmachine is reading

11 years agofix channel count in embedded file formats
Anthony Minessale [Tue, 5 Aug 2014 19:25:04 +0000 (00:25 +0500)] 
fix channel count in embedded file formats

11 years agomod demo so you can change params when not connected
Anthony Minessale [Tue, 5 Aug 2014 18:41:28 +0000 (23:41 +0500)] 
mod demo so you can change params when not connected

11 years agoFS-6713 #comment remove debug
Anthony Minessale [Tue, 5 Aug 2014 17:14:05 +0000 (22:14 +0500)] 
FS-6713 #comment remove debug

11 years agomod_skinny: fix calloc argument ordering CID: 1214236 1214235
Nathan Neulinger [Tue, 5 Aug 2014 16:52:52 +0000 (11:52 -0500)] 
mod_skinny: fix calloc argument ordering CID: 1214236 1214235

11 years agomod_skinny: calloc param ordering 1214234
Nathan Neulinger [Tue, 5 Aug 2014 16:45:38 +0000 (11:45 -0500)] 
mod_skinny: calloc param ordering 1214234

11 years agomod_skinny: fix potential NPE CID: 1223252
Nathan Neulinger [Tue, 5 Aug 2014 16:39:17 +0000 (11:39 -0500)] 
mod_skinny: fix potential NPE CID: 1223252

11 years agomod_skinny: pointless check CID 1060963
Nathan Neulinger [Tue, 5 Aug 2014 16:30:15 +0000 (11:30 -0500)] 
mod_skinny: pointless check CID 1060963

11 years agomod_skinny: fix potential overflow CID: 1060947
Nathan Neulinger [Tue, 5 Aug 2014 16:26:20 +0000 (11:26 -0500)] 
mod_skinny: fix potential overflow CID: 1060947

11 years agomod_skinny: start using switch_copy_string so it uses apy_cpystrn - CID: 1214145...
Nathan Neulinger [Tue, 5 Aug 2014 16:18:21 +0000 (11:18 -0500)] 
mod_skinny: start using switch_copy_string so it uses apy_cpystrn - CID: 1214145 1214146 1214131 1214132 1214133 1214134 1214135
1214147 1214148 1214149 1214150 1214151 1214152 1214153 1214154 1214155 1214138 1214139 1214143 1214144

Forces null termination of the destination string.

11 years agomod_skinny: CID:1060950 remove some dead debugging code
Nathan Neulinger [Tue, 5 Aug 2014 16:10:47 +0000 (11:10 -0500)] 
mod_skinny: CID:1060950 remove some dead debugging code

11 years agoFS-6713 #resolve
Anthony Minessale [Mon, 4 Aug 2014 18:50:31 +0000 (23:50 +0500)] 
FS-6713 #resolve

11 years agosave remote caller id
Anthony Minessale [Mon, 4 Aug 2014 18:08:29 +0000 (23:08 +0500)] 
save remote caller id

11 years agoFS-6620 mod_blacklist fix not deleting entries from list
Dušan Dragić [Sun, 3 Aug 2014 09:15:06 +0000 (11:15 +0200)] 
FS-6620 mod_blacklist fix not deleting entries from list

11 years agoSilence warning from clang-3.5 dealing with redefining the variable argv which is...
William King [Sun, 3 Aug 2014 02:47:07 +0000 (19:47 -0700)] 
Silence warning from clang-3.5 dealing with redefining the variable argv which is first defined as a function parameter

11 years agoSilence a warning in clang-3.5 dealing with implicit conversion from 64bit to 32bit...
William King [Sun, 3 Aug 2014 02:41:44 +0000 (19:41 -0700)] 
Silence a warning in clang-3.5 dealing with implicit conversion from 64bit to 32bit in a function call to switch_ivr_sleep()

11 years agoFS-6719 #resolve
Brian West [Fri, 1 Aug 2014 21:55:51 +0000 (16:55 -0500)] 
FS-6719 #resolve

11 years agoadd checkbox to demo to use stun or not
Anthony Minessale [Fri, 1 Aug 2014 20:20:00 +0000 (01:20 +0500)] 
add checkbox to demo to use stun or not

11 years agoalways start payloads at 102 to avoid webrtc funk
Anthony Minessale [Fri, 1 Aug 2014 19:59:30 +0000 (00:59 +0500)] 
always start payloads at 102 to avoid webrtc funk

11 years agomap emails
Ken Rice [Fri, 1 Aug 2014 19:47:38 +0000 (14:47 -0500)] 
map emails

11 years agoFS-6690 #resolve
Anthony Minessale [Fri, 1 Aug 2014 18:07:13 +0000 (23:07 +0500)] 
FS-6690 #resolve

11 years agoadd switch_separate_file_params function so when using relative paths with bracketed...
Anthony Minessale [Fri, 1 Aug 2014 17:57:35 +0000 (22:57 +0500)] 
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

11 years agoFS-6718 #message adding the patch
Anthony Minessale [Fri, 1 Aug 2014 16:07:53 +0000 (21:07 +0500)] 
FS-6718 #message adding the patch

11 years agoTreat `*-min.js` files as minified for git
Travis Cross [Fri, 1 Aug 2014 16:59:11 +0000 (16:59 +0000)] 
Treat `*-min.js` files as minified for git

11 years agoTreat minified files as binary for git
Travis Cross [Fri, 1 Aug 2014 16:54:19 +0000 (16:54 +0000)] 
Treat minified files as binary for git

This prevents e.g. `git log -p` from showing the content changes in
these files by default, which is what we want because line-oriented
diffs of these files are meaningless.

11 years agoonly set the not_ready flag on one side on video unbridge
Anthony Minessale [Thu, 31 Jul 2014 18:20:04 +0000 (23:20 +0500)] 
only set the not_ready flag on one side on video unbridge

11 years agoFS-6712 #resolve
Anthony Minessale [Thu, 31 Jul 2014 18:04:10 +0000 (23:04 +0500)] 
FS-6712 #resolve

11 years agoFS-6711 #resolve
Anthony Minessale [Thu, 31 Jul 2014 17:59:21 +0000 (22:59 +0500)] 
FS-6711 #resolve

11 years agoFS-6707 #resolve #comment add the param iceServers to verto constructor. possible...
Anthony Minessale [Thu, 31 Jul 2014 17:45:47 +0000 (22:45 +0500)] 
FS-6707 #resolve #comment add the param iceServers to verto constructor.  possible values: true: enables previous behaviour, false: nowthe default, use no iceServers, ARRAY of iceServer objects: this object will be passed into the browser as-is

11 years agoAdd DELETE request support to mod_curl
Travis Cross [Thu, 31 Jul 2014 02:29:02 +0000 (02:29 +0000)] 
Add DELETE request support to mod_curl

11 years agoFix build on Debian sid/jessie
Travis Cross [Thu, 31 Jul 2014 03:21:19 +0000 (03:21 +0000)] 
Fix build on Debian sid/jessie

Debian has packaged libpq version 9.4beta2.  We were parsing the minor
version as "4beta2" and then trying to treat it as a constant integer,
which obviously doesn't work.

There's not really a perfect way to handle versions like this, so
we'll just pretend it's 9.4.0.

11 years agofix typo that can lead to seg
Anthony Minessale [Wed, 30 Jul 2014 17:17:47 +0000 (22:17 +0500)] 
fix typo that can lead to seg

11 years agofix extraneous < in sip url parser
Anthony Minessale [Wed, 30 Jul 2014 17:13:57 +0000 (22:13 +0500)] 
fix extraneous < in sip url parser

11 years agoCID 1229134: fix small memory leak
William King [Wed, 30 Jul 2014 04:42:31 +0000 (21:42 -0700)] 
CID 1229134: fix small memory leak

11 years agoFS-6701 #resolve
Anthony Minessale [Tue, 29 Jul 2014 17:20:31 +0000 (22:20 +0500)] 
FS-6701 #resolve

11 years agoFS-6702 #resolve
Anthony Minessale [Tue, 29 Jul 2014 17:16:56 +0000 (22:16 +0500)] 
FS-6702 #resolve

11 years agoImproved HDLC abort handling
Steve Underwood [Tue, 29 Jul 2014 13:22:47 +0000 (21:22 +0800)] 
Improved HDLC abort handling

11 years agoFS-6631 #resolve
Anthony Minessale [Mon, 28 Jul 2014 22:04:24 +0000 (03:04 +0500)] 
FS-6631 #resolve

11 years agoFixes for DTC handling in the T.38 gateway
Steve Underwood [Mon, 28 Jul 2014 15:35:06 +0000 (23:35 +0800)] 
Fixes for DTC handling in the T.38 gateway

11 years agousing hosted version to avoid blocks, following cb7a338 7596689
Seven Du [Mon, 28 Jul 2014 12:02:09 +0000 (20:02 +0800)] 
using hosted version to avoid blocks, following cb7a338 7596689

11 years agotrivial compiler fix
Jeff Lenk [Sun, 27 Jul 2014 22:23:51 +0000 (17:23 -0500)] 
trivial compiler fix

11 years agoqueue more messages
Anthony Minessale [Fri, 25 Jul 2014 21:24:10 +0000 (02:24 +0500)] 
queue more messages

11 years agotweaks
Brian West [Fri, 25 Jul 2014 20:54:37 +0000 (15:54 -0500)] 
tweaks