]>
git.ipfire.org Git - thirdparty/freeswitch.git/log
Travis Cross [Wed, 3 Jul 2013 10:32:25 +0000 (10:32 +0000)]
Fix spacing
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
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)
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
Travis Cross [Wed, 3 Jul 2013 04:25:48 +0000 (04:25 +0000)]
Tweak such that control-modules.gen matches
Travis Cross [Wed, 3 Jul 2013 04:22:26 +0000 (04:22 +0000)]
Add mod_ssml to Debian packaging
Travis Cross [Wed, 3 Jul 2013 04:22:15 +0000 (04:22 +0000)]
Add mod_rayo to debian packaging
Steve Underwood [Tue, 2 Jul 2013 18:39:09 +0000 (02:39 +0800)]
Added a "nation" parameter to v18_init(), in preparation for automoding.
Jeff Lenk [Tue, 2 Jul 2013 17:41:15 +0000 (12:41 -0500)]
fix trivial compiler error
Anthony Minessale [Tue, 2 Jul 2013 17:16:54 +0000 (12:16 -0500)]
fix codec negotiation issue with the same codec at multiple rates
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.
Nathan Neulinger [Tue, 2 Jul 2013 03:19:15 +0000 (22:19 -0500)]
partial rollback of
ec6754262863475136c6a53b012eb7b0bb62d7ba to fix skinny breakage
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>
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
Anthony Minessale [Mon, 1 Jul 2013 17:16:47 +0000 (12:16 -0500)]
FS-5565 --resolve
Ken Rice [Fri, 28 Jun 2013 20:08:44 +0000 (15:08 -0500)]
ooops
Ken Rice [Fri, 28 Jun 2013 19:38:31 +0000 (14:38 -0500)]
vp8 rpm and minor tweaks
Anthony Minessale [Fri, 28 Jun 2013 19:20:58 +0000 (14:20 -0500)]
fix race condition on device state destroy
Jeff Lenk [Fri, 28 Jun 2013 16:05:27 +0000 (11:05 -0500)]
FS-5527 fix compiler error windows
Anthony Minessale [Fri, 28 Jun 2013 15:42:01 +0000 (10:42 -0500)]
FS-5527 --resolve
Chris Rienzo [Fri, 28 Jun 2013 15:16:06 +0000 (11:16 -0400)]
mod_rayo: dtmf #*A-D was broken
Brian West [Fri, 28 Jun 2013 14:48:28 +0000 (09:48 -0500)]
punt without return
Anthony Minessale [Thu, 27 Jun 2013 21:31:29 +0000 (16:31 -0500)]
add preAnswer and ringReady too
Anthony Minessale [Thu, 27 Jun 2013 21:25:59 +0000 (16:25 -0500)]
add answer work tag to httapi
Anthony Minessale [Thu, 27 Jun 2013 19:04:13 +0000 (14:04 -0500)]
some more ws transport tweaks
Anthony Minessale [Thu, 27 Jun 2013 18:00:20 +0000 (13:00 -0500)]
parse error response for code to only change roles on 487
Anthony Minessale [Thu, 27 Jun 2013 03:10:19 +0000 (23:10 -0400)]
fix ssl connect race
Nathan Neulinger [Thu, 27 Jun 2013 02:56:10 +0000 (21:56 -0500)]
improve skinny behavior in HA deployment
Nathan Neulinger [Thu, 27 Jun 2013 02:55:38 +0000 (21:55 -0500)]
typo
Anthony Minessale [Wed, 26 Jun 2013 23:35:06 +0000 (18:35 -0500)]
set rtp params in skinny for rtp flush on bridge
Anthony Minessale [Wed, 26 Jun 2013 21:04:28 +0000 (16:04 -0500)]
fix empty +flags{} pre-empting conference_member_flags variable
Brian West [Wed, 26 Jun 2013 20:17:41 +0000 (15:17 -0500)]
use the correct repeat key to replay messages
Anthony Minessale [Wed, 26 Jun 2013 15:51:44 +0000 (10:51 -0500)]
FS-5550 --resolve
Anthony Minessale [Wed, 26 Jun 2013 15:47:40 +0000 (10:47 -0500)]
FS-5547 --resolve
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
Anthony Minessale [Wed, 26 Jun 2013 16:43:54 +0000 (12:43 -0400)]
tweak sip ws code to avoid double free
Anthony Minessale [Tue, 25 Jun 2013 20:51:12 +0000 (15:51 -0500)]
bump
Anthony Minessale [Tue, 25 Jun 2013 20:50:06 +0000 (15:50 -0500)]
bump
Anthony Minessale [Tue, 25 Jun 2013 19:54:29 +0000 (14:54 -0500)]
fix typo with some flags related to jingle
Chris Rienzo [Tue, 25 Jun 2013 19:15:08 +0000 (15:15 -0400)]
mod_rayo: added missing modeline
Anthony Minessale [Tue, 25 Jun 2013 14:28:50 +0000 (09:28 -0500)]
update
Nathan Neulinger [Tue, 25 Jun 2013 16:50:17 +0000 (11:50 -0500)]
make noexpandtab explicit in all vim modelines other than xml files
Chris Rienzo [Tue, 25 Jun 2013 15:40:38 +0000 (11:40 -0400)]
mod_rayo: used wrong stack
Chris Rienzo [Tue, 25 Jun 2013 15:30:10 +0000 (11:30 -0400)]
mod_rayo: fixes for <prompt> and reply loops
Chris Rienzo [Tue, 25 Jun 2013 12:08:56 +0000 (08:08 -0400)]
mod_rayo: fix component JID
Chris Rienzo [Tue, 25 Jun 2013 11:54:59 +0000 (07:54 -0400)]
mod_rayo: fix cleanup of console complete functions
Chris Rienzo [Tue, 25 Jun 2013 11:42:34 +0000 (07:42 -0400)]
mod_rayo: don't send item-not-found to replies
Chris Rienzo [Tue, 25 Jun 2013 02:12:24 +0000 (22:12 -0400)]
mod_http_cache: valgrind fixes
Chris Rienzo [Tue, 25 Jun 2013 02:07:50 +0000 (22:07 -0400)]
mod_ssml: valgrind fixes
Chris Rienzo [Tue, 25 Jun 2013 01:55:58 +0000 (21:55 -0400)]
mod_rayo: valgrind fixes
Chris Rienzo [Tue, 25 Jun 2013 01:14:27 +0000 (21:14 -0400)]
mod_rayo: forgot to return error if unknown destination for stanza
Chris Rienzo [Tue, 25 Jun 2013 00:50:37 +0000 (20:50 -0400)]
mod_rayo: added message delivery threads
Chris Rienzo [Mon, 24 Jun 2013 18:51:54 +0000 (14:51 -0400)]
mod_rayo: reworked internal messaging- all messages sent by JID only
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
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
Anthony Minessale [Mon, 24 Jun 2013 14:15:01 +0000 (09:15 -0500)]
FS-5539 --resolve
Anthony Minessale [Mon, 24 Jun 2013 13:31:06 +0000 (08:31 -0500)]
Nathan Neulinger [Mon, 24 Jun 2013 02:48:08 +0000 (21:48 -0500)]
Merge branch 'master' of ssh://git.freeswitch.org:222/freeswitch
Nathan Neulinger [Mon, 24 Jun 2013 02:47:58 +0000 (21:47 -0500)]
skinny more logging improvements and some refactoring of protocol replies
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
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
Nathan Neulinger [Sun, 23 Jun 2013 20:18:10 +0000 (15:18 -0500)]
logging
Nathan Neulinger [Sun, 23 Jun 2013 20:11:31 +0000 (15:11 -0500)]
fix broken build due to running with warnings disabled, oops
Nathan Neulinger [Sun, 23 Jun 2013 19:58:25 +0000 (14:58 -0500)]
skinny logging
Jeff Lenk [Sun, 23 Jun 2013 19:34:26 +0000 (14:34 -0500)]
fix windows build
Nathan Neulinger [Sun, 23 Jun 2013 19:19:05 +0000 (14:19 -0500)]
improvements to skinny logging, table based message text ids
Nathan Neulinger [Sat, 22 Jun 2013 18:46:26 +0000 (13:46 -0500)]
misc constant name adjustments to match actual text on phones
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
Jeff Lenk [Sat, 22 Jun 2013 02:43:22 +0000 (21:43 -0500)]
fix trivial compiler warning
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
Nathan Neulinger [Fri, 21 Jun 2013 19:48:49 +0000 (14:48 -0500)]
FS-5532 - workaround to improve behavior, but not correct fix
Chris Rienzo [Fri, 21 Jun 2013 13:42:54 +0000 (09:42 -0400)]
mod_rayo: fix crash when DTMF is received after input timeout
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)
Anthony Minessale [Fri, 21 Jun 2013 05:41:25 +0000 (00:41 -0500)]
make sure sip-hold works on webrtc
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
Anthony Minessale [Fri, 21 Jun 2013 03:25:25 +0000 (22:25 -0500)]
sniffing glue
Anthony Minessale [Fri, 21 Jun 2013 02:51:31 +0000 (21:51 -0500)]
fill the opposite file to keep data in sync
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
Anthony Minessale [Fri, 21 Jun 2013 02:15:32 +0000 (21:15 -0500)]
FS-5530
Anthony Minessale [Fri, 21 Jun 2013 02:10:23 +0000 (21:10 -0500)]
FS-5530 --resolve
Anthony Minessale [Fri, 21 Jun 2013 01:58:55 +0000 (20:58 -0500)]
FS-5530 --resolve
Anthony Minessale [Thu, 20 Jun 2013 23:33:40 +0000 (18:33 -0500)]
FS-5513 --resolve
Giovanni Maruzzelli [Thu, 20 Jun 2013 22:40:41 +0000 (00:40 +0200)]
gsmopen: cleaning
Giovanni Maruzzelli [Thu, 20 Jun 2013 22:36:26 +0000 (00:36 +0200)]
gsmopen: cleaning
Giovanni Maruzzelli [Thu, 20 Jun 2013 22:32:34 +0000 (00:32 +0200)]
gsmopen: cleaning
Giovanni Maruzzelli [Thu, 20 Jun 2013 22:02:37 +0000 (00:02 +0200)]
gsmopen: cleaning
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
Jeff Lenk [Thu, 20 Jun 2013 19:27:08 +0000 (14:27 -0500)]
fix compiler warning
Anthony Minessale [Thu, 20 Jun 2013 16:41:34 +0000 (11:41 -0500)]
swigall
Anthony Minessale [Thu, 20 Jun 2013 18:10:21 +0000 (13:10 -0500)]
add novideo app
Anthony Minessale [Thu, 20 Jun 2013 18:08:09 +0000 (13:08 -0500)]
add novideo app
Anthony Minessale [Thu, 20 Jun 2013 17:36:30 +0000 (12:36 -0500)]
FS-5529 --resolve
Anthony Minessale [Thu, 20 Jun 2013 15:50:33 +0000 (10:50 -0500)]
fix gcc bug patch
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)
Anthony Minessale [Thu, 20 Jun 2013 15:14:41 +0000 (10:14 -0500)]
comment out broken test
Steve Underwood [Thu, 20 Jun 2013 15:53:53 +0000 (23:53 +0800)]
Fixed NEON detection and added AVX2 detection to spandsp
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
Giovanni Maruzzelli [Thu, 20 Jun 2013 12:21:49 +0000 (14:21 +0200)]
FS-5292 gsmopen: patch from garmt
Giovanni Maruzzelli [Thu, 20 Jun 2013 08:16:46 +0000 (10:16 +0200)]
FS-5482 skypopen: check assignment on possibly NULL pointer, avoiding segfault
Anthony Minessale [Thu, 20 Jun 2013 02:54:58 +0000 (21:54 -0500)]
fix ref counting issue in tcp,tls,wss transports