]> git.ipfire.org Git - thirdparty/freeswitch.git/log
thirdparty/freeswitch.git
12 years agoFix spacing
Travis Cross [Wed, 3 Jul 2013 10:32:25 +0000 (10:32 +0000)] 
Fix spacing

12 years agoFix uninitialized use of length variable
Travis Cross [Wed, 3 Jul 2013 15:58:46 +0000 (15:58 +0000)] 
Fix uninitialized use of length variable

Bad things must have been happening when this was hit.

This was introduced in commit 5cb4cd9d9cef91d172c36e827a6bf1640fdca968

12 years agoFS-5148 gsmopen: wait for the first audio write() before giving the AT command that...
Giovanni Maruzzelli [Wed, 3 Jul 2013 11:56:02 +0000 (13:56 +0200)] 
FS-5148 gsmopen: wait for the first audio write() before giving the AT command that moves the audio path to the audio tty (eg: don't accumulate noise by not sending frames on the open tty)

12 years agogsmopen: on Linux, automatically find out and setup audio and data ports associated...
Giovanni Maruzzelli [Wed, 3 Jul 2013 08:01:17 +0000 (10:01 +0200)] 
gsmopen: on Linux, automatically find out and setup audio and data ports associated to dongle model, IMEI and IMSI

12 years agoTweak such that control-modules.gen matches
Travis Cross [Wed, 3 Jul 2013 04:25:48 +0000 (04:25 +0000)] 
Tweak such that control-modules.gen matches

12 years agoAdd mod_ssml to Debian packaging
Travis Cross [Wed, 3 Jul 2013 04:22:26 +0000 (04:22 +0000)] 
Add mod_ssml to Debian packaging

12 years agoAdd mod_rayo to debian packaging
Travis Cross [Wed, 3 Jul 2013 04:22:15 +0000 (04:22 +0000)] 
Add mod_rayo to debian packaging

12 years agoAdded a "nation" parameter to v18_init(), in preparation for automoding.
Steve Underwood [Tue, 2 Jul 2013 18:39:09 +0000 (02:39 +0800)] 
Added a "nation" parameter to v18_init(), in preparation for automoding.

12 years agofix trivial compiler error
Jeff Lenk [Tue, 2 Jul 2013 17:41:15 +0000 (12:41 -0500)] 
fix trivial compiler error

12 years agofix codec negotiation issue with the same codec at multiple rates
Anthony Minessale [Tue, 2 Jul 2013 17:16:54 +0000 (12:16 -0500)] 
fix codec negotiation issue with the same codec at multiple rates

12 years agoFS-5568 --resolve the real problem is that L=-1 is not valid because the L param...
Anthony Minessale [Tue, 2 Jul 2013 13:44:47 +0000 (08:44 -0500)] 
FS-5568 --resolve the real problem is that L=-1 is not valid because the L param is about how many times to generate the output while generating the tone so -1 is impossible because it can never end to let you hear it.  The real fix is to not allow -1 loops=-1 is the correct way to do this because that is parsed after the tone is generated and repeats the entire thing.  Doing something like L=100 actually generates the whole slinear audio 100 times into memore where loops=100 only generates the little snippet and repeats it after it was generated.

12 years agopartial rollback of ec6754262863475136c6a53b012eb7b0bb62d7ba to fix skinny breakage
Nathan Neulinger [Tue, 2 Jul 2013 03:19:15 +0000 (22:19 -0500)] 
partial rollback of ec6754262863475136c6a53b012eb7b0bb62d7ba to fix skinny breakage

12 years ago--resolve FS-5566
Ken Rice [Mon, 1 Jul 2013 22:03:00 +0000 (17:03 -0500)] 
--resolve FS-5566

When you use $12345 in regex substitutions, it isn't obvious
whenever you mean $1-concatenated-2345 or $12-concatenated-345
or any other variation.  In all other languages, in order to
solve this ambiguity, a braces {} are allowed to be used to
separate variable name (or a reference) from surrounding text,
like ${1}2345 or ${12}345.  Use the same for freeswitch too.

While at it, fix a buffer overflow as well: the index[] variable
which is used to copy the "variable" name is 10 chars long, but
it is used in the code without bounds checking, so a reference
which is >9 chars long ($1234567890) will overflow the buffer,
crashing freeswitch.

And another overflow is in the way how size of the "substituted"
variable is handled.  First, in the outer loop, we compare the
wrong variable with the size of `substituted' buffer (amount of
bytes we took from the source instead of amount of bytes we
used in `substituted').  And second, when actual regex match
is being substitured, amount of room in `substituted' variable
is not checked at all.

Patch contributed by Michael Tokarev <mjt@tls.msk.ru>

12 years agofix input event checker pre-empting return value from dtmf checker when both are...
Anthony Minessale [Mon, 1 Jul 2013 19:31:43 +0000 (14:31 -0500)] 
fix input event checker pre-empting return value from dtmf checker when both are present

12 years agoFS-5565 --resolve
Anthony Minessale [Mon, 1 Jul 2013 17:16:47 +0000 (12:16 -0500)] 
FS-5565 --resolve

12 years agoooops
Ken Rice [Fri, 28 Jun 2013 20:08:44 +0000 (15:08 -0500)] 
ooops

12 years agovp8 rpm and minor tweaks
Ken Rice [Fri, 28 Jun 2013 19:38:31 +0000 (14:38 -0500)] 
vp8 rpm and minor tweaks

12 years agofix race condition on device state destroy
Anthony Minessale [Fri, 28 Jun 2013 19:20:58 +0000 (14:20 -0500)] 
fix race condition on device state destroy

12 years agoFS-5527 fix compiler error windows
Jeff Lenk [Fri, 28 Jun 2013 16:05:27 +0000 (11:05 -0500)] 
FS-5527 fix compiler error windows

12 years agoFS-5527 --resolve
Anthony Minessale [Fri, 28 Jun 2013 15:42:01 +0000 (10:42 -0500)] 
FS-5527 --resolve

12 years agomod_rayo: dtmf #*A-D was broken
Chris Rienzo [Fri, 28 Jun 2013 15:16:06 +0000 (11:16 -0400)] 
mod_rayo: dtmf #*A-D was broken

12 years agopunt without return
Brian West [Fri, 28 Jun 2013 14:48:28 +0000 (09:48 -0500)] 
punt without return

12 years agoadd preAnswer and ringReady too
Anthony Minessale [Thu, 27 Jun 2013 21:31:29 +0000 (16:31 -0500)] 
add preAnswer and ringReady too

12 years agoadd answer work tag to httapi
Anthony Minessale [Thu, 27 Jun 2013 21:25:59 +0000 (16:25 -0500)] 
add answer work tag to httapi

12 years agosome more ws transport tweaks
Anthony Minessale [Thu, 27 Jun 2013 19:04:13 +0000 (14:04 -0500)] 
some more ws transport tweaks

12 years agoparse error response for code to only change roles on 487
Anthony Minessale [Thu, 27 Jun 2013 18:00:20 +0000 (13:00 -0500)] 
parse error response for code to only change roles on 487

12 years agofix ssl connect race
Anthony Minessale [Thu, 27 Jun 2013 03:10:19 +0000 (23:10 -0400)] 
fix ssl connect race

12 years agoimprove skinny behavior in HA deployment
Nathan Neulinger [Thu, 27 Jun 2013 02:56:10 +0000 (21:56 -0500)] 
improve skinny behavior in HA deployment

12 years agotypo
Nathan Neulinger [Thu, 27 Jun 2013 02:55:38 +0000 (21:55 -0500)] 
typo

12 years agoset rtp params in skinny for rtp flush on bridge
Anthony Minessale [Wed, 26 Jun 2013 23:35:06 +0000 (18:35 -0500)] 
set rtp params in skinny for rtp flush on bridge

12 years agofix empty +flags{} pre-empting conference_member_flags variable
Anthony Minessale [Wed, 26 Jun 2013 21:04:28 +0000 (16:04 -0500)] 
fix empty +flags{} pre-empting conference_member_flags variable

12 years agouse the correct repeat key to replay messages
Brian West [Wed, 26 Jun 2013 20:17:41 +0000 (15:17 -0500)] 
use the correct repeat key to replay messages

12 years agoFS-5550 --resolve
Anthony Minessale [Wed, 26 Jun 2013 15:51:44 +0000 (10:51 -0500)] 
FS-5550 --resolve

12 years agoFS-5547 --resolve
Anthony Minessale [Wed, 26 Jun 2013 15:47:40 +0000 (10:47 -0500)] 
FS-5547 --resolve

12 years agoFS-5546 --resolve oddly that is the thing I was trying to fix in the first place
Anthony Minessale [Wed, 26 Jun 2013 14:17:15 +0000 (09:17 -0500)] 
FS-5546 --resolve oddly that is the thing I was trying to fix in the first place

12 years agotweak sip ws code to avoid double free
Anthony Minessale [Wed, 26 Jun 2013 16:43:54 +0000 (12:43 -0400)] 
tweak sip ws code to avoid double free

12 years agobump
Anthony Minessale [Tue, 25 Jun 2013 20:51:12 +0000 (15:51 -0500)] 
bump

12 years agobump v1.5.2
Anthony Minessale [Tue, 25 Jun 2013 20:50:06 +0000 (15:50 -0500)] 
bump

12 years agofix typo with some flags related to jingle
Anthony Minessale [Tue, 25 Jun 2013 19:54:29 +0000 (14:54 -0500)] 
fix typo with some flags related to jingle

12 years agomod_rayo: added missing modeline
Chris Rienzo [Tue, 25 Jun 2013 19:15:08 +0000 (15:15 -0400)] 
mod_rayo: added missing modeline

12 years agoupdate
Anthony Minessale [Tue, 25 Jun 2013 14:28:50 +0000 (09:28 -0500)] 
update

12 years agomake noexpandtab explicit in all vim modelines other than xml files
Nathan Neulinger [Tue, 25 Jun 2013 16:50:17 +0000 (11:50 -0500)] 
make noexpandtab explicit in all vim modelines other than xml files

12 years agomod_rayo: used wrong stack
Chris Rienzo [Tue, 25 Jun 2013 15:40:38 +0000 (11:40 -0400)] 
mod_rayo: used wrong stack

12 years agomod_rayo: fixes for <prompt> and reply loops
Chris Rienzo [Tue, 25 Jun 2013 15:30:10 +0000 (11:30 -0400)] 
mod_rayo: fixes for <prompt> and reply loops

12 years agomod_rayo: fix component JID
Chris Rienzo [Tue, 25 Jun 2013 12:08:56 +0000 (08:08 -0400)] 
mod_rayo: fix component JID

12 years agomod_rayo: fix cleanup of console complete functions
Chris Rienzo [Tue, 25 Jun 2013 11:54:59 +0000 (07:54 -0400)] 
mod_rayo: fix cleanup of console complete functions

12 years agomod_rayo: don't send item-not-found to replies
Chris Rienzo [Tue, 25 Jun 2013 11:42:34 +0000 (07:42 -0400)] 
mod_rayo: don't send item-not-found to replies

12 years agomod_http_cache: valgrind fixes
Chris Rienzo [Tue, 25 Jun 2013 02:12:24 +0000 (22:12 -0400)] 
mod_http_cache: valgrind fixes

12 years agomod_ssml: valgrind fixes
Chris Rienzo [Tue, 25 Jun 2013 02:07:50 +0000 (22:07 -0400)] 
mod_ssml: valgrind fixes

12 years agomod_rayo: valgrind fixes
Chris Rienzo [Tue, 25 Jun 2013 01:55:58 +0000 (21:55 -0400)] 
mod_rayo: valgrind fixes

12 years agomod_rayo: forgot to return error if unknown destination for stanza
Chris Rienzo [Tue, 25 Jun 2013 01:14:27 +0000 (21:14 -0400)] 
mod_rayo: forgot to return error if unknown destination for stanza

12 years agomod_rayo: added message delivery threads
Chris Rienzo [Tue, 25 Jun 2013 00:50:37 +0000 (20:50 -0400)] 
mod_rayo: added message delivery threads

12 years agomod_rayo: reworked internal messaging- all messages sent by JID only
Chris Rienzo [Mon, 24 Jun 2013 18:51:54 +0000 (14:51 -0400)] 
mod_rayo: reworked internal messaging- all messages sent by JID only

12 years agomod_rayo: remove reply from send function - everything is send only now
Chris Rienzo [Mon, 24 Jun 2013 14:02:09 +0000 (10:02 -0400)] 
mod_rayo: remove reply from send function - everything is send only now

12 years agoFS-5530 --resolve this will make it identical to the bridge behaviour even when the...
Anthony Minessale [Mon, 24 Jun 2013 14:45:43 +0000 (09:45 -0500)] 
FS-5530 --resolve this will make it identical to the bridge behaviour even when the bridge in early media begins and now you will explicitly need continue_on_fail=true in this situation to not fail

12 years agoFS-5539 --resolve
Anthony Minessale [Mon, 24 Jun 2013 14:15:01 +0000 (09:15 -0500)] 
FS-5539 --resolve

12 years agorevert 02c329da33ce10aea160f070d710fef406de3009 and put proper fix
Anthony Minessale [Mon, 24 Jun 2013 13:31:06 +0000 (08:31 -0500)] 
revert 02c329da33ce10aea160f070d710fef406de3009 and put proper fix

12 years agoMerge branch 'master' of ssh://git.freeswitch.org:222/freeswitch
Nathan Neulinger [Mon, 24 Jun 2013 02:48:08 +0000 (21:48 -0500)] 
Merge branch 'master' of ssh://git.freeswitch.org:222/freeswitch

12 years agoskinny more logging improvements and some refactoring of protocol replies
Nathan Neulinger [Mon, 24 Jun 2013 02:47:58 +0000 (21:47 -0500)] 
skinny more logging improvements and some refactoring of protocol replies

12 years agoOPENZAP-215 --resolve
Moises Silva [Mon, 24 Jun 2013 01:48:43 +0000 (21:48 -0400)] 
OPENZAP-215 --resolve

The state FTDM_CHANNEL_STATE_RINGING is not used when there is media available. We have
FTDM_CHANNEL_PROGRESS_MEDIA for that, therefore the pri_acknowledge() call should not set
the info argument to avoid sending an indication of media to the other end, as that may cause
the other end to not generate any ringing tone and at that moment we will not be generating
any ringing tone either and the caller will hear only silence

12 years agoskinny - add simple expansion of text strings by id in the logging msgs
Nathan Neulinger [Sun, 23 Jun 2013 21:11:54 +0000 (16:11 -0500)] 
skinny - add simple expansion of text strings by id in the logging msgs

12 years agologging
Nathan Neulinger [Sun, 23 Jun 2013 20:18:10 +0000 (15:18 -0500)] 
logging

12 years agofix broken build due to running with warnings disabled, oops
Nathan Neulinger [Sun, 23 Jun 2013 20:11:31 +0000 (15:11 -0500)] 
fix broken build due to running with warnings disabled, oops

12 years agoskinny logging
Nathan Neulinger [Sun, 23 Jun 2013 19:58:25 +0000 (14:58 -0500)] 
skinny logging

12 years agofix windows build
Jeff Lenk [Sun, 23 Jun 2013 19:34:26 +0000 (14:34 -0500)] 
fix windows build

12 years agoimprovements to skinny logging, table based message text ids
Nathan Neulinger [Sun, 23 Jun 2013 19:19:05 +0000 (14:19 -0500)] 
improvements to skinny logging, table based message text ids

12 years agomisc constant name adjustments to match actual text on phones
Nathan Neulinger [Sat, 22 Jun 2013 18:46:26 +0000 (13:46 -0500)] 
misc constant name adjustments to match actual text on phones

12 years agomod_rayo: Punchblock now supports content-type on input matches
Ben Langfeld [Fri, 21 Jun 2013 17:46:47 +0000 (13:46 -0400)] 
mod_rayo: Punchblock now supports content-type on input matches

Fix applied to Punchblock here: https://github.com/adhearsion/punchblock/commit/cef5198e80b60e19fc949b21f6e0dc438cecc5df

12 years agofix trivial compiler warning
Jeff Lenk [Sat, 22 Jun 2013 02:43:22 +0000 (21:43 -0500)] 
fix trivial compiler warning

12 years agofix return values from refactor so stun timeouts can trigger error properly
Anthony Minessale [Fri, 21 Jun 2013 17:42:37 +0000 (12:42 -0500)] 
fix return values from refactor so stun timeouts can trigger error properly

12 years agoFS-5532 - workaround to improve behavior, but not correct fix
Nathan Neulinger [Fri, 21 Jun 2013 19:48:49 +0000 (14:48 -0500)] 
FS-5532 - workaround to improve behavior, but not correct fix

12 years agomod_rayo: fix crash when DTMF is received after input timeout
Chris Rienzo [Fri, 21 Jun 2013 13:42:54 +0000 (09:42 -0400)] 
mod_rayo: fix crash when DTMF is received after input timeout

12 years agoskypopen: OSS driver has active timers only on active devices (eg: when it's actually...
Giovanni Maruzzelli [Fri, 21 Jun 2013 08:57:59 +0000 (10:57 +0200)] 
skypopen: OSS driver has active timers only on active devices (eg: when it's actually used by a skypeclient)

12 years agomake sure sip-hold works on webrtc
Anthony Minessale [Fri, 21 Jun 2013 05:41:25 +0000 (00:41 -0500)] 
make sure sip-hold works on webrtc

12 years agoFS-5531 --resolve add another optional param to supply flags for either behaviour...
Anthony Minessale [Fri, 21 Jun 2013 03:53:20 +0000 (22:53 -0500)] 
FS-5531 --resolve add another optional param to supply flags for either behaviour n for null and b for boolean

12 years agosniffing glue
Anthony Minessale [Fri, 21 Jun 2013 03:25:25 +0000 (22:25 -0500)] 
sniffing glue

12 years agofill the opposite file to keep data in sync
Anthony Minessale [Fri, 21 Jun 2013 02:51:31 +0000 (21:51 -0500)] 
fill the opposite file to keep data in sync

12 years agoadd answer_delay variable to sleep N ms when answer is called from the channel thread
Anthony Minessale [Fri, 21 Jun 2013 02:29:31 +0000 (21:29 -0500)] 
add answer_delay variable to sleep N ms when answer is called from the channel thread

12 years agoFS-5530
Anthony Minessale [Fri, 21 Jun 2013 02:15:32 +0000 (21:15 -0500)] 
FS-5530

12 years agoFS-5530 --resolve
Anthony Minessale [Fri, 21 Jun 2013 02:10:23 +0000 (21:10 -0500)] 
FS-5530 --resolve

12 years agoFS-5530 --resolve
Anthony Minessale [Fri, 21 Jun 2013 01:58:55 +0000 (20:58 -0500)] 
FS-5530 --resolve

12 years agoFS-5513 --resolve
Anthony Minessale [Thu, 20 Jun 2013 23:33:40 +0000 (18:33 -0500)] 
FS-5513 --resolve

12 years agogsmopen: cleaning
Giovanni Maruzzelli [Thu, 20 Jun 2013 22:40:41 +0000 (00:40 +0200)] 
gsmopen: cleaning

12 years agogsmopen: cleaning
Giovanni Maruzzelli [Thu, 20 Jun 2013 22:36:26 +0000 (00:36 +0200)] 
gsmopen: cleaning

12 years agogsmopen: cleaning
Giovanni Maruzzelli [Thu, 20 Jun 2013 22:32:34 +0000 (00:32 +0200)] 
gsmopen: cleaning

12 years agogsmopen: cleaning
Giovanni Maruzzelli [Thu, 20 Jun 2013 22:02:37 +0000 (00:02 +0200)] 
gsmopen: cleaning

12 years agoFS-4821 fixed core dump when received sms in UCS2 after having sent sms in UCS2
Giovanni Maruzzelli [Thu, 20 Jun 2013 21:58:28 +0000 (23:58 +0200)] 
FS-4821 fixed core dump when received sms in UCS2 after having sent sms in UCS2

12 years agofix compiler warning
Jeff Lenk [Thu, 20 Jun 2013 19:27:08 +0000 (14:27 -0500)] 
fix compiler warning

12 years agoswigall
Anthony Minessale [Thu, 20 Jun 2013 16:41:34 +0000 (11:41 -0500)] 
swigall

12 years agoadd novideo app
Anthony Minessale [Thu, 20 Jun 2013 18:10:21 +0000 (13:10 -0500)] 
add novideo app

12 years agoadd novideo app
Anthony Minessale [Thu, 20 Jun 2013 18:08:09 +0000 (13:08 -0500)] 
add novideo app

12 years agoFS-5529 --resolve
Anthony Minessale [Thu, 20 Jun 2013 17:36:30 +0000 (12:36 -0500)] 
FS-5529 --resolve

12 years agofix gcc bug patch
Anthony Minessale [Thu, 20 Jun 2013 15:50:33 +0000 (10:50 -0500)] 
fix gcc bug patch

12 years agonewer gcc does not like when you use out of bounds array indexes to access other...
Anthony Minessale [Thu, 20 Jun 2013 15:16:32 +0000 (10:16 -0500)] 
newer gcc does not like when you use out of bounds array indexes to access other elements in a struct (at least at -O2)

12 years agocomment out broken test
Anthony Minessale [Thu, 20 Jun 2013 15:14:41 +0000 (10:14 -0500)] 
comment out broken test

12 years agoFixed NEON detection and added AVX2 detection to spandsp
Steve Underwood [Thu, 20 Jun 2013 15:53:53 +0000 (23:53 +0800)] 
Fixed NEON detection and added AVX2 detection to spandsp

12 years agomod_ssml: XML decode <audio src=".. attribute since iksemel SAX parser doesn't
Chris Rienzo [Thu, 20 Jun 2013 13:24:46 +0000 (09:24 -0400)] 
mod_ssml: XML decode <audio src=".. attribute since iksemel SAX parser doesn't

12 years agoFS-5292 gsmopen: patch from garmt
Giovanni Maruzzelli [Thu, 20 Jun 2013 12:21:49 +0000 (14:21 +0200)] 
FS-5292 gsmopen: patch from garmt

12 years agoFS-5482 skypopen: check assignment on possibly NULL pointer, avoiding segfault
Giovanni Maruzzelli [Thu, 20 Jun 2013 08:16:46 +0000 (10:16 +0200)] 
FS-5482 skypopen: check assignment on possibly NULL pointer, avoiding segfault

12 years agofix ref counting issue in tcp,tls,wss transports
Anthony Minessale [Thu, 20 Jun 2013 02:54:58 +0000 (21:54 -0500)] 
fix ref counting issue in tcp,tls,wss transports