]> git.ipfire.org Git - thirdparty/freeswitch.git/log
thirdparty/freeswitch.git
11 years agoFS-6713 #resolve
Anthony Minessale [Mon, 4 Aug 2014 18:50:31 +0000 (23:50 +0500)] 
FS-6713 #resolve

11 years agoFS-6440 regression from this patch on single CPU or VM machines causes startup race
Anthony Minessale [Mon, 23 Jun 2014 18:55:52 +0000 (23:55 +0500)] 
FS-6440 regression from this patch on single CPU or VM machines causes startup race

11 years agofix jb endless loop of missing packets
Anthony Minessale [Thu, 3 Jul 2014 04:34:25 +0000 (09:34 +0500)] 
fix jb endless loop of missing packets

11 years agofs_cli: fix compiler error on CentOS 6 caused by recent short uuid logging change
Chris Rienzo [Mon, 30 Jun 2014 21:30:59 +0000 (17:30 -0400)] 
fs_cli: fix compiler error on CentOS 6 caused by recent short uuid logging change

11 years agoFS-6621
Brian West [Tue, 24 Jun 2014 19:13:10 +0000 (14:13 -0500)] 
FS-6621

11 years agoremove useless variable
Michael Jerris [Mon, 28 Apr 2014 19:19:19 +0000 (15:19 -0400)] 
remove useless variable

11 years agogit push
Brian West [Mon, 23 Jun 2014 21:40:09 +0000 (16:40 -0500)] 
git push
Merge branch 'v1.2.stable' of ssh://git.freeswitch.org/freeswitch into v1.2.stable

11 years agoFS-6612 backport to 1.2 for endusers still on 1.2 that require this
Brian West [Mon, 23 Jun 2014 21:40:04 +0000 (16:40 -0500)] 
FS-6612 backport to 1.2 for endusers still on 1.2 that require this

11 years agosync up jb changes
Anthony Minessale [Tue, 17 Jun 2014 20:48:40 +0000 (01:48 +0500)] 
sync up jb changes

11 years agoUse portable version of strerror_r()
Travis Cross [Mon, 16 Jun 2014 13:45:39 +0000 (13:45 +0000)] 
Use portable version of strerror_r()

FS-6596 --resolve

11 years agoFS-6440 --resolve
Anthony Minessale [Fri, 13 Jun 2014 00:46:40 +0000 (05:46 +0500)] 
FS-6440 --resolve

11 years agoFS-6533: --resolve fix gcc 4.9 warning due to useless right-hand operand of comma...
Michael Jerris [Mon, 19 May 2014 15:36:02 +0000 (10:36 -0500)] 
FS-6533: --resolve fix gcc 4.9 warning due to useless right-hand operand of comma expression

11 years agoFS-6538: silence gcc 4.9 throwing incorrect warning
Michael Jerris [Tue, 20 May 2014 15:46:46 +0000 (15:46 +0000)] 
FS-6538: silence gcc 4.9 throwing incorrect warning

11 years agoOverride config on cowbuilder update
Travis Cross [Wed, 11 Jun 2014 01:05:36 +0000 (01:05 +0000)] 
Override config on cowbuilder update

This allows new settings, e.g. new mirrors, to propagate into the
chroot images.

11 years agoRetry for longer on failed cowbuilder operations
Travis Cross [Wed, 11 Jun 2014 00:55:06 +0000 (00:55 +0000)] 
Retry for longer on failed cowbuilder operations

There's really nothing to do but retry.

11 years agoRetry the cowbuilder create operation on failure
Travis Cross [Wed, 11 Jun 2014 00:52:12 +0000 (00:52 +0000)] 
Retry the cowbuilder create operation on failure

Sometimes while the debian repositories are updating there are
sporadic signature failures.  It's annoying to have these break the
build, and the only thing to do is to retry, so we'll retry here
automatically.  We were already retrying on the update operation that
can fail in a similar manner.

11 years agoCheck for execv(3) errors when reincarnating
Travis Cross [Tue, 10 Jun 2014 23:36:56 +0000 (23:36 +0000)] 
Check for execv(3) errors when reincarnating

When -reincarnate-reexec is given we run execv to restart FS.  If
argv[0] isn't a full pathname then execv is going to fail.  While not
common for a FS system started by init, this is a common occurrence
when FS is started from the shell.

Now if execv fails, we'll try execvp.  If that fails too then we'll
fall back on the normal reincarnation behavior.

Previously what would happen in that case is god would descend from
the heavens and become mortal.  Leaving heaven absent, all hope for
reincarnation was lost.

(That is, we'd simply return from reincarnate_protect and the
supervisor process would become the new instance of FS, so the trick
would only work once.)

11 years agoAdd fsctl command to summon reincarnation
Travis Cross [Tue, 10 Jun 2014 22:21:38 +0000 (22:21 +0000)] 
Add fsctl command to summon reincarnation

If you start freeswitch with -reincarnate or -reincarnate-reexec, FS
will restart automatically in the event of an unexpected exit.

Currently, you can cause FS to immediately call exit(0) with `fsctl
shutdown now`, or you can have it call abort() with `fsctl crash`.
Which are both nice, but if you have reincarnation engaged, you really
might want FS to call exit([non-zero]) so the great supervisor
immediately breathes life back into your system.

This is now available via `fsctl shutdown reincarnate now`.

11 years agoImprove a parameter name for fs_cli
Travis Cross [Wed, 4 Jun 2014 16:04:20 +0000 (16:04 +0000)] 
Improve a parameter name for fs_cli

What we momentarily called log-uuid-chars is now better called
log-uuid-length.  Setting log-uuid-length will specify a truncation
length for UUIDs displayed by setting log-uuid.

11 years agoAdd log-uuid-short option to fs_cli
Travis Cross [Wed, 4 Jun 2014 11:07:36 +0000 (11:07 +0000)] 
Add log-uuid-short option to fs_cli

If log-uuid-short is set, or -S is passed to fs_cli, we only display
the first 8 hex digits of the UUID.  The log-uuid-chars option may
instead be set to specify some other truncation length for the UUID.

11 years agoConvert esl_true and esl_false to functions
Travis Cross [Wed, 4 Jun 2014 11:53:34 +0000 (11:53 +0000)] 
Convert esl_true and esl_false to functions

Prior to this commit, an expression such as:

  esl_true("true") ? 42 : 0

...would return 1 rather than 42.

11 years agofreeswitch-config-rayo.spec remove some dependencies to high def audio and specific...
Chris Rienzo [Tue, 10 Jun 2014 19:01:47 +0000 (15:01 -0400)] 
freeswitch-config-rayo.spec remove some dependencies to high def audio and specific fs version

11 years agofix regression from regression
Anthony Minessale [Tue, 3 Jun 2014 00:26:24 +0000 (05:26 +0500)] 
fix regression from regression

11 years agoFS-6446 regression fixed
Anthony Minessale [Tue, 3 Jun 2014 00:11:34 +0000 (05:11 +0500)] 
FS-6446 regression fixed

11 years agomake device state code more accurate
Anthony Minessale [Fri, 30 May 2014 19:30:59 +0000 (00:30 +0500)] 
make device state code more accurate

Conflicts:
src/switch_core_state_machine.c

11 years agoFS-6446 --resolve
Anthony Minessale [Tue, 27 May 2014 15:39:53 +0000 (20:39 +0500)] 
FS-6446 --resolve

Conflicts:
src/mod/endpoints/mod_sofia/sofia.c

11 years agorayo config: increase mod_shout outscale to mpg123 default of 32768
Chris Rienzo [Wed, 28 May 2014 15:49:22 +0000 (11:49 -0400)] 
rayo config: increase mod_shout outscale to mpg123 default of 32768

11 years agomod_rayo: remove code that is no longer needed
Chris Rienzo [Tue, 27 May 2014 14:21:56 +0000 (10:21 -0400)] 
mod_rayo: remove code that is no longer needed

11 years agomod_rayo: http_put of received fax was broken
Chris Rienzo [Tue, 27 May 2014 13:15:22 +0000 (09:15 -0400)] 
mod_rayo: http_put of received fax was broken

11 years agoAvoid useless NAT log message
Travis Cross [Sat, 24 May 2014 00:34:12 +0000 (00:34 +0000)] 
Avoid useless NAT log message

If FS is not behind NAT, then every call generates at least three
INFO-level log messages:

  [INFO] switch_nat.c:589 NAT port mapping disabled

This is useless noise.  The message is only interesting if you do have
NAT enabled but mapping disabled, which might indicate a configuration
issue.

With this change, we just skip the entire nat_add_mapping function if
the NAT system isn't initialized or we're not behind NAT.

11 years agoAdd support for number-alias in directory app
Marc Olivier Chouinard [Fri, 14 Feb 2014 00:03:11 +0000 (19:03 -0500)] 
Add support for number-alias in directory app

FS-5913 --resolve

11 years agoFS-6418 FS-6427 add profile param NDLB-proxy-never-patch-reinvites to solve both...
Anthony Minessale [Tue, 20 May 2014 22:31:01 +0000 (03:31 +0500)] 
FS-6418 FS-6427 add profile param NDLB-proxy-never-patch-reinvites to solve both issues

11 years agoFS-6530 Chinese say now say "one" before "ten" for numbers >99
Steve Underwood [Sat, 17 May 2014 06:28:58 +0000 (14:28 +0800)] 
FS-6530 Chinese say now say "one" before "ten" for numbers >99

11 years agoCID 1214210: mod_ssml - resource leak when parsing SSML
Chris Rienzo [Thu, 15 May 2014 15:31:04 +0000 (11:31 -0400)] 
CID 1214210: mod_ssml - resource leak when parsing SSML

11 years agoCID 1214263: mod_ssml - remove unused pointer value
Chris Rienzo [Thu, 15 May 2014 15:12:06 +0000 (11:12 -0400)] 
CID 1214263: mod_ssml - remove unused pointer value

11 years agoAvoid polluting CFLAGS for mod_snmp
Travis Cross [Tue, 13 May 2014 17:36:15 +0000 (17:36 +0000)] 
Avoid polluting CFLAGS for mod_snmp

Putting `net-snmp-config --cflags` into CFLAGS causes major pollution;
it overrides optimization and debugging levels, warnings, and more.
While normally we do want to automatically locate library headers,
there has to be a better way to do this.  libsnmp is normally in the
usual place and doesn't need special handling.  Perhaps people with
libsnmp in a weird place should just need to add the -I flag to their
CFLAGS before build.

11 years agoCleanup makefile library dependencies of mod_snmp
Travis Cross [Tue, 13 May 2014 17:27:46 +0000 (17:27 +0000)] 
Cleanup makefile library dependencies of mod_snmp

Calling out to net-snmp-config --agent-libs causes transitive
dependencies to get pulled in, but we don't need those -- a sensible
dynamic linker pulls those in automatically.  Trying to track the
transitive dependencies manually would be a losing battle.

People were recently hitting this on Debian sid/jessie, where libpci
is in the transitive dependency list but isn't otherwise one of our
build dependencies.

11 years agoversion bump
Ken Rice [Mon, 12 May 2014 16:18:53 +0000 (11:18 -0500)] 
version bump

11 years agoFS-6515 --resolve
Anthony Minessale [Fri, 9 May 2014 19:35:32 +0000 (00:35 +0500)] 
FS-6515 --resolve

11 years agoCID: 1211940 mod_rayo - unlikely dereference of NULL pointer
Chris Rienzo [Thu, 8 May 2014 16:11:15 +0000 (12:11 -0400)] 
CID: 1211940 mod_rayo - unlikely dereference of NULL pointer

11 years agoCID: 1211941 mod_rayo - unlikely dereference of NULL pointer
Chris Rienzo [Thu, 8 May 2014 16:10:01 +0000 (12:10 -0400)] 
CID: 1211941 mod_rayo - unlikely dereference of NULL pointer

11 years agoCID: 1211943 mod_rayo - removed dead code when changing output speed
Chris Rienzo [Thu, 8 May 2014 16:03:28 +0000 (12:03 -0400)] 
CID: 1211943 mod_rayo - removed dead code when changing output speed

11 years agoCID: 1211944 mod_rayo - remove set of unused pointer
Chris Rienzo [Thu, 8 May 2014 15:47:38 +0000 (11:47 -0400)] 
CID: 1211944 mod_rayo - remove set of unused pointer

11 years agoCID: 1211946 mod_rayo - dead code after switch statement
Chris Rienzo [Thu, 8 May 2014 15:36:05 +0000 (11:36 -0400)] 
CID: 1211946 mod_rayo - dead code after switch statement

11 years agoCID: 1211947 mod_rayo - allocated array with unsigned char * element size instead...
Chris Rienzo [Thu, 8 May 2014 15:33:27 +0000 (11:33 -0400)] 
CID: 1211947 mod_rayo - allocated array with unsigned char * element size instead of unsigned char

11 years agoCID: 1211951 mod_rayo - fix unlikely dereference of null pointer
Chris Rienzo [Thu, 8 May 2014 15:30:53 +0000 (11:30 -0400)] 
CID: 1211951 mod_rayo - fix unlikely dereference of null pointer

11 years agomod_rayo: fix compiler error to nlsml.c from attempted coverity fix
Chris Rienzo [Thu, 8 May 2014 15:10:42 +0000 (11:10 -0400)] 
mod_rayo: fix compiler error to nlsml.c from attempted coverity fix

11 years agoCID: 1211948 fix memory leak of decoded iks message in function parse_plain_auth_mess...
William King [Wed, 7 May 2014 07:44:54 +0000 (00:44 -0700)] 
CID: 1211948 fix memory leak of decoded iks message in function parse_plain_auth_message in mod_rayo

11 years agoCID: 1211950 fix memory leak of iksparser in function nlsml_parse in mod_rayo
William King [Wed, 7 May 2014 07:37:32 +0000 (00:37 -0700)] 
CID: 1211950 fix memory leak of iksparser in function nlsml_parse in mod_rayo

11 years agoFS-6506 --resolve Technically when you are not using groups you do not add a <users...
Anthony Minessale [Tue, 6 May 2014 19:05:55 +0000 (00:05 +0500)] 
FS-6506 --resolve Technically when you are not using groups you do not add a <users> tag inside <domain> you just put several <user> tags in <domain> This patch will consume an extraneous <users> tag and move on making it work either way.

11 years agoadd quickie targets for fr sounds
Michael Jerris [Mon, 5 May 2014 23:22:52 +0000 (19:22 -0400)] 
add quickie targets for fr sounds

11 years agosofia is treating all notify sending as if they were natted rather than when nat...
Anthony Minessale [Mon, 5 May 2014 23:10:19 +0000 (04:10 +0500)] 
sofia is treating all notify sending as if they were natted rather than when nat is detected.  This causes issues on some polycoms that use strange ports in their contact for getting notifies that do not match the port the calls come from

11 years agoFS-6503 --resolve remove unused code
Anthony Minessale [Thu, 1 May 2014 19:00:13 +0000 (00:00 +0500)] 
FS-6503 --resolve remove unused code

11 years agoFS-6500: try to do the bounds checking properly using element of the enum
Michael Jerris [Thu, 1 May 2014 18:32:23 +0000 (14:32 -0400)] 
FS-6500: try to do the bounds checking properly using element of the enum

11 years agoCorrection to commit 0ba59aa6c2d252886eb4889c5d37fe114e07b4f4 using the correct varia...
William King [Tue, 29 Apr 2014 22:22:38 +0000 (15:22 -0700)] 
Correction to commit 0ba59aa6c2d252886eb4889c5d37fe114e07b4f4 using the correct variable in tel uri param parsing for mod_sofia

11 years agoFS-4779 FS-6467 the behaviour from 4479 is now masked behind the param 3pcc-reinvite...
Anthony Minessale [Mon, 28 Apr 2014 17:10:09 +0000 (22:10 +0500)] 
FS-4779 FS-6467 the behaviour from 4479 is now masked behind the param 3pcc-reinvite-bridged-on-ack FS-6467 please test master

11 years agoFS-6491 --resolve
Anthony Minessale [Mon, 28 Apr 2014 16:16:52 +0000 (21:16 +0500)] 
FS-6491 --resolve

This seems to be a paradox when running a perl script from a session then executing perl again on the same session from a different thread.
I fixed it by converting any execution of perl in the execute_on_* family of operators to only run background mode which is to store the command in the session stack to be executed only by the session thread instead of on the spot by the outide thread.  changing the execute_on_answer to perl::/path/to/script.pl would also eliminate the crash in code that has not been updated with this patch.

This is just a limitation of embedded perl we have to live with.

11 years agoExpanding on 052638186b2784c4142089008adf4289d40c80bc to support boolean tel url...
William King [Fri, 25 Apr 2014 20:49:59 +0000 (13:49 -0700)] 
Expanding on 052638186b2784c4142089008adf4289d40c80bc to support boolean tel url params in mod_sofia

11 years agoFS-6485: --resolve fix -lz include order issue breaking ubuntu 14.04 build
Michael Jerris [Thu, 24 Apr 2014 12:11:31 +0000 (08:11 -0400)] 
FS-6485: --resolve fix -lz include order issue breaking ubuntu 14.04 build

11 years agomod_soundtouch: commit 34d5b6e8657e28298470c09a614fc586b8bac761 broke CentOS build
Chris Rienzo [Tue, 22 Apr 2014 20:24:00 +0000 (16:24 -0400)] 
mod_soundtouch: commit 34d5b6e8657e28298470c09a614fc586b8bac761 broke CentOS build

11 years agoFS-6477 --resolve
Anthony Minessale [Tue, 22 Apr 2014 18:51:44 +0000 (23:51 +0500)] 
FS-6477 --resolve

Conflicts:
src/mod/applications/mod_conference/mod_conference.c

11 years agomod_rayo: preserve old caller ID behavior if display name is not given
Chris Rienzo [Tue, 22 Apr 2014 17:29:43 +0000 (13:29 -0400)] 
mod_rayo: preserve old caller ID behavior if display name is not given

11 years agomod_rayo: relax recent caller ID restrictions a bit
Chris Rienzo [Tue, 22 Apr 2014 12:50:25 +0000 (08:50 -0400)] 
mod_rayo: relax recent caller ID restrictions a bit

11 years agoRefactor out extraneous call to gettime
Travis Cross [Mon, 17 Mar 2014 02:06:58 +0000 (02:06 +0000)] 
Refactor out extraneous call to gettime

We were calling switch_epoch_time_now() twice for no good reason.

11 years agoEdit out gcc-ism from soundtouch lib
Travis Cross [Tue, 18 Mar 2014 21:36:37 +0000 (21:36 +0000)] 
Edit out gcc-ism from soundtouch lib

This allows building mod_soundtouch in clang as clang doesn't support
gcc's -fcheck-new.

11 years agoRemove ancient FS-2746 patch from tree
Travis Cross [Wed, 19 Mar 2014 19:11:47 +0000 (19:11 +0000)] 
Remove ancient FS-2746 patch from tree

11 years agoRemove completely obsolete patches from tree
Travis Cross [Wed, 19 Mar 2014 03:02:49 +0000 (03:02 +0000)] 
Remove completely obsolete patches from tree

These haven't been touched in years; they can't possibly still be
applicable.

11 years agoRemove stray executable bits
Travis Cross [Mon, 31 Mar 2014 20:38:09 +0000 (20:38 +0000)] 
Remove stray executable bits

11 years agoAdd uuid_ring_ready API command
Travis Cross [Mon, 31 Mar 2014 21:07:36 +0000 (21:07 +0000)] 
Add uuid_ring_ready API command

We already had uuid_answer and uuid_pre_answer, so we might as well
add uuid_ring_ready.

11 years agoFix typo in comment
Travis Cross [Tue, 8 Apr 2014 23:16:39 +0000 (23:16 +0000)] 
Fix typo in comment

11 years agoAvoid leaking memory on mod_cdr_sqlite unload
Travis Cross [Sat, 12 Apr 2014 06:57:59 +0000 (06:57 +0000)] 
Avoid leaking memory on mod_cdr_sqlite unload

11 years agoAvoid leaking memory on mod_voicemail unload
Travis Cross [Sat, 12 Apr 2014 06:48:36 +0000 (06:48 +0000)] 
Avoid leaking memory on mod_voicemail unload

11 years agoAvoid leaking memory on mod_hash unload
Travis Cross [Sat, 12 Apr 2014 06:43:11 +0000 (06:43 +0000)] 
Avoid leaking memory on mod_hash unload

11 years agoAvoid leaking memory on unload of mod_dptools
Travis Cross [Sat, 12 Apr 2014 06:31:31 +0000 (06:31 +0000)] 
Avoid leaking memory on unload of mod_dptools

Automated leak detectors find leaked memory on shutdown.  Cleaning up
after ourselves on shutdown eliminates noise from these reports.

11 years agoHide warning about sometimes initialized variable
Travis Cross [Sat, 12 Apr 2014 04:44:45 +0000 (04:44 +0000)] 
Hide warning about sometimes initialized variable

The rc variable here was always initialized but the compiler couldn't
see that because of the lack of an unconditional else clause.

11 years agoCorrect display of last write timestamp
Travis Cross [Sat, 19 Apr 2014 01:44:40 +0000 (01:44 +0000)] 
Correct display of last write timestamp

On start DTMF packets we were showing the last write timestamp as a
signed value when it's an unsigned value, which could result in it
appearing incongruous with later packets where the value was displayed
correctly.

11 years agoMove loop exit conditionals
Travis Cross [Wed, 9 Apr 2014 07:40:18 +0000 (07:40 +0000)] 
Move loop exit conditionals

The net effect here is the code looks more "regular" and reads more
linearly.

11 years agoAvoid considering more phrase actions after break
Travis Cross [Wed, 9 Apr 2014 07:35:38 +0000 (07:35 +0000)] 
Avoid considering more phrase actions after break

Previously we would continue considering phrase actions even after
receiving a break action; we would only break on the next input
clause.  It appears the intent here was to break before the next
action.

11 years agoImprove comment
Travis Cross [Wed, 9 Apr 2014 07:35:15 +0000 (07:35 +0000)] 
Improve comment

11 years agoConsolidate two conditionals
Travis Cross [Wed, 9 Apr 2014 07:30:14 +0000 (07:30 +0000)] 
Consolidate two conditionals

If we get SWITCH_STATUS_BREAK then we didn't get
SWITCH_STATUS_SUCCESS.

11 years agoRemove variable assignment without effect
Travis Cross [Wed, 9 Apr 2014 07:28:25 +0000 (07:28 +0000)] 
Remove variable assignment without effect

We're breaking out of the loop here anyway, so setting done to true is
useless.

11 years agoFix memory leak in phrase macro playback
Travis Cross [Wed, 9 Apr 2014 07:26:36 +0000 (07:26 +0000)] 
Fix memory leak in phrase macro playback

We were leaking memory when break_on_match was set or when we received
back SWITCH_STATUS_BREAK from a callee as we were failing to free
field_expanded_alloc.

11 years agoRemove tautological conditional
Travis Cross [Wed, 9 Apr 2014 07:23:48 +0000 (07:23 +0000)] 
Remove tautological conditional

If pattern is null we're setting it to a non-null value, so this
branch will always be taken.

Use `git diff -w` or `git log -p -w` to see what's going on in this
commit.

11 years agoFix memory leak on memory error
Travis Cross [Wed, 9 Apr 2014 07:14:59 +0000 (07:14 +0000)] 
Fix memory leak on memory error

In the event of a memory error, we were trying to free a null pointer
while leaking the allocation for field_expanded_alloc.

11 years agoMove variables down into loop where they're used
Travis Cross [Wed, 9 Apr 2014 07:11:15 +0000 (07:11 +0000)] 
Move variables down into loop where they're used

These variables aren't used outside of this for loop, so they should
be declared within it.

11 years agofix compiler warning
Seven Du [Thu, 17 Apr 2014 06:58:18 +0000 (14:58 +0800)] 
fix compiler warning

11 years agoupdate
Anthony Minessale [Wed, 16 Apr 2014 23:33:21 +0000 (04:33 +0500)] 
update

11 years agoFS-6462 --resolve
Anthony Minessale [Wed, 16 Apr 2014 23:26:43 +0000 (04:26 +0500)] 
FS-6462 --resolve

I found a problem here but it may not completely match your expectations.
I reviewed the RFC 4028 and checked against the code and I discovered we should not be putting a Min-SE in any response at all besides a 422:

section 5:

   The Min-SE header field MUST NOT be used in responses except for
   those with a 422 response code.  It indicates the minimum value of
   the session interval that the server is willing to accept.

I corrected this problem and implemented the 422 response so if you request a value lower than the minimum specified for the profile.
If the value is equal or higher to the minimum, it will be reflected in the Session-Expires header in the response and no Min-SE will be present.

11 years agoFS-5997 regression from commit 70accd9f272472ac2081283f1927d901b409acb6 this caused...
Anthony Minessale [Wed, 16 Apr 2014 21:41:40 +0000 (02:41 +0500)] 
FS-5997 regression from commit 70accd9f272472ac2081283f1927d901b409acb6 this caused some attended transfers to calls with multiple targets to get the abondoned channels to be stuck on write lock

11 years agoFS-6407 --resolve mod_rayo: support SIP URI caller ID w/ display name
Chris Rienzo [Tue, 15 Apr 2014 18:27:49 +0000 (14:27 -0400)] 
FS-6407 --resolve mod_rayo: support SIP URI caller ID w/ display name

11 years agoadd parsing of user params on invite
Raymond Chandler [Tue, 15 Apr 2014 16:47:48 +0000 (12:47 -0400)] 
add parsing of user params on invite

11 years agostable branch version of spandsp changes in 4178688b4a7c77cc5ca296fd6bc0b91fea0d0f2a
Anthony Minessale [Mon, 14 Apr 2014 20:57:28 +0000 (01:57 +0500)] 
stable branch version of spandsp changes in 4178688b4a7c77cc5ca296fd6bc0b91fea0d0f2a

11 years agoFS-6460 --resolve fix leaked RTP ports that cause mod_skinny to fail after N calls
Nathan Neulinger [Mon, 14 Apr 2014 18:22:24 +0000 (13:22 -0500)] 
FS-6460 --resolve fix leaked RTP ports that cause mod_skinny to fail after N calls

11 years agoFS-6447 --resolve return subscriber-absent platform-code 20 if <dial> is attempted...
Chris Rienzo [Mon, 14 Apr 2014 13:47:41 +0000 (09:47 -0400)] 
FS-6447 --resolve return subscriber-absent platform-code 20 if <dial> is attempted to user that is not registered

11 years agoremove SSML from mod_rss
Anthony Minessale [Thu, 10 Apr 2014 22:33:57 +0000 (03:33 +0500)] 
remove SSML from mod_rss

11 years agomod_rayo: fixed input crash introduced in 2014-04-07 commit
Chris Rienzo [Thu, 10 Apr 2014 14:20:47 +0000 (10:20 -0400)] 
mod_rayo: fixed input crash introduced in 2014-04-07 commit

11 years agoSuppress spurious warning in phrase macro playback
Travis Cross [Wed, 9 Apr 2014 04:48:09 +0000 (04:48 +0000)] 
Suppress spurious warning in phrase macro playback

Prior to this commit, if anything at all went wrong in
switch_ivr_phrase_macro_event() we would generate a warning like this:

  [WARNING] switch_ivr_play_say.c:348 Macro [macro_name]: 'pattern_name' did not match any patterns

This is clearly misleading.  The natural thing to do on seeing that
message is to verify that the language files are there, and that the
pattern really does exist in that macro.  But none of that was usually
the problem.  The message would be generated if the language wasn't
found, or if the channel had gone away, for example.

With this commit, we verify that we actually tried looking for the
pattern before displaying the warning about the pattern not matching.

11 years agoAvoid playback on dead channels in voicemail
Travis Cross [Wed, 9 Apr 2014 04:36:52 +0000 (04:36 +0000)] 
Avoid playback on dead channels in voicemail

For years we've been generating spurious messages like:

  [WARNING] switch_ivr_play_say.c:348 Macro [voicemail_ack]: 'saved' did not match any patterns

This would happen when the caller hangs up during the playback of
certain prompts in the voicemail system where we weren't checking the
return value of vm_macro_get().  Looking closely at the log, it's
clear we were calling down into switch_ivr_phrase_macro() long after
the channel was gone.

The message above is also misleading -- switch_ivr_phrase_macro()
would have been able to find that pattern just fine, but it never
actually looked because the channel was gone.  We'll clean up that
message in a follow on commit.

11 years agoAvoid crash on event without content-type
Travis Cross [Wed, 9 Apr 2014 01:16:12 +0000 (01:16 +0000)] 
Avoid crash on event without content-type

If we received an event without a content-type header we were
dereferencing a null pointer leading to a seg fault.

Reported-by: Ico <ico@voip-io.org>
ESL-90 --resolve

11 years agoESL-89: fix install path and single_command require
Brian West [Mon, 7 Apr 2014 20:26:13 +0000 (15:26 -0500)] 
ESL-89: fix install path and single_command require

Conflicts:
libs/esl/ruby/single_command.rb