]> git.ipfire.org Git - thirdparty/freeswitch.git/log
thirdparty/freeswitch.git
10 years agoFS-5800: [mod_curl] add support for additional curl auth methods
Michael Jerris [Mon, 17 Nov 2014 16:01:35 +0000 (11:01 -0500)] 
FS-5800: [mod_curl] add support for additional curl auth methods

10 years agoFS-5666: [mod_redis] add ignore_connect_fail config setting to not kill the call...
Michael Jerris [Mon, 17 Nov 2014 15:29:39 +0000 (10:29 -0500)] 
FS-5666: [mod_redis] add ignore_connect_fail config setting to not kill the call when redis is down when using redis backend for limit

10 years agoiksemel - remove support for SSLv23 in iks_proceed_tls (was a FS addition to iksemel...
Chris Rienzo [Mon, 17 Nov 2014 14:46:23 +0000 (09:46 -0500)] 
iksemel - remove support for SSLv23 in iks_proceed_tls (was a FS addition to iksemel).  mod_rayo - updated to no longer support SSLv23

10 years agoMerge pull request #113 in FS/freeswitch from ~FLAVIO/freeswitch:bugfix/FS-7004-mod_s...
Mike Jerris [Mon, 17 Nov 2014 14:29:08 +0000 (08:29 -0600)] 
Merge pull request #113 in FS/freeswitch from ~FLAVIO/freeswitch:bugfix/FS-7004-mod_sndfile_respect_umask to master

* commit 'c73afe1c85f42d076c4b71c80251f7c888d47756':
  FS-7004 mod_sndfile: respect umask when creating new files

10 years agoFS-6996: #resolve fix define change as of glibc 2.20 for _BSD_SOURCE -> _DEFAULT_SOURCE
Michael Jerris [Mon, 17 Nov 2014 14:27:22 +0000 (09:27 -0500)] 
FS-6996: #resolve fix define change as of glibc 2.20 for _BSD_SOURCE -> _DEFAULT_SOURCE

10 years agoFS-7004 mod_sndfile: respect umask when creating new files
Flavio Grossi [Mon, 17 Nov 2014 10:11:42 +0000 (11:11 +0100)] 
FS-7004 mod_sndfile: respect umask when creating new files

Files created by mod_sndfile use sf_open() which uses hardcoded permissions. To
respect the process' umask, manually open files with the correct permissions
and then call sf_open_fd().

10 years agoAllow setting CURL timeout from curl API command
Travis Cross [Sun, 16 Nov 2014 19:20:07 +0000 (19:20 +0000)] 
Allow setting CURL timeout from curl API command

Previously the `timeout` option to the curl API command set only
`CURLOPT_CONNECTTIMEOUT` -- the maximum amount of time that curl will
wait to connect to the server.  If the server accepted the connection
but then never replied, curl would wait essentially forever.  There
was no way to set `CURLOPT_TIMEOUT` -- the maximum amount of time the
entire request operation is allowed to take.

With this change, the `timeout` option sets `CURLOPT_TIMEOUT`.  We've
earlier added a `connect-timeout` option to set
`CURLOPT_CONNECTTIMEOUT`.

This is a change to existing behavior.  However, it's likely that this
is what people expected it to do all along.  The curl application
call, for example, accepts both `curl_connect_timeout` and
`curl_timeout` channel variables, with the latter setting
`CURLOPT_TIMEOUT`.

If people really were relying on this odd behavior, we'll rename the
option with the new behavior to something else and come up with a
transition plan.

10 years agoAdd `connect-timeout` option for curl API command
Travis Cross [Sun, 16 Nov 2014 19:16:39 +0000 (19:16 +0000)] 
Add `connect-timeout` option for curl API command

This option sets the maximum number of seconds that curl will wait to
connect with the server.

Right now this is a synonym for the `timeout` option.

10 years agoFS-7003 #resolve #comment mod_rayo: fix infinite loop when output sent to server...
Chris Rienzo [Fri, 14 Nov 2014 19:20:48 +0000 (14:20 -0500)] 
FS-7003 #resolve #comment mod_rayo: fix infinite loop when output sent to server without SSML configured and repeat-times=0

10 years agomod_rayo: new configuration parameter, add-variables-to-offer (default=false). When...
Chris Rienzo [Fri, 14 Nov 2014 18:22:53 +0000 (13:22 -0500)] 
mod_rayo: new configuration parameter, add-variables-to-offer (default=false).  When true, all channel variables are included in the offer to rayo client

10 years agoMerge pull request #111 in FS/freeswitch from ~JCHAVANTON/freeswitch-opus:FS-6992...
Brian West [Fri, 14 Nov 2014 14:37:23 +0000 (08:37 -0600)] 
Merge pull request #111 in FS/freeswitch from ~JCHAVANTON/freeswitch-opus:FS-6992 to master

* commit '826d42874139c59636de234d7021d485f03b81ee':
  FS-6992 [mod_opus] global configuration or maxplaybackrate and maxaveragebitrate from opus.conf.xml

10 years agoFS-6992 [mod_opus] global configuration or maxplaybackrate and maxaveragebitrate
Julien Chavanton [Thu, 13 Nov 2014 12:48:04 +0000 (13:48 +0100)] 
FS-6992 [mod_opus] global configuration or maxplaybackrate and maxaveragebitrate
from opus.conf.xml

10 years agoFS-6979 #resolve #comment mod_http_cache: added base-domain config to s3 profiles...
Chris Rienzo [Thu, 13 Nov 2014 15:20:02 +0000 (10:20 -0500)] 
FS-6979 #resolve #comment mod_http_cache: added base-domain config to s3 profiles so mod_http_cache can access self hosted s3 compatible service.

Example configuration:

  <profiles>
    <profile name="s3">
       <!-- Credentials for AWS account. -->
       <aws-s3>
          <!-- 20 character key identifier -->
          <access-key-id><![CDATA[AKIAIOSFODNN7EXAMPLE]]></access-key-id>
          <!-- 40 character secret -->
          <secret-access-key><![CDATA[wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY]]></secret-access-key>
          <base-domain><![CDATA[example.com]]></base-domain>
       </aws-s3>
       <!-- Domains that this profile applies to -->
       <domains>
          <domain name="bucket.example.com"/>
          <domain name="bucket2.example.com"/>
       </domains>
    </profile>
  </profiles>

10 years agoFS-6531: #resolve set to tag on uuid_phone_event notify to make grandstream happy...
Michael Jerris [Thu, 13 Nov 2014 03:55:31 +0000 (21:55 -0600)] 
FS-6531: #resolve set to tag on uuid_phone_event notify to make grandstream happy, even tho they could have matched the dialog fine off the from tag like every other phone does.

10 years agoFS-6531: #resolve set to tag on auto answer notify to make grandstream happy, even...
Michael Jerris [Thu, 13 Nov 2014 03:37:14 +0000 (21:37 -0600)] 
FS-6531: #resolve set to tag on auto answer notify to make grandstream happy, even tho they could have matched the dialog fine off the from tag like every other phone does.

10 years agoFS-6890 #comment please test
Anthony Minessale [Wed, 12 Nov 2014 19:09:23 +0000 (13:09 -0600)] 
FS-6890 #comment please test

10 years agoFS-6890 #comment revert
Anthony Minessale [Wed, 12 Nov 2014 19:07:43 +0000 (13:07 -0600)] 
FS-6890 #comment revert

10 years agoAvoid mod_shout on sid/jessie for now
Travis Cross [Thu, 30 Oct 2014 01:24:09 +0000 (01:24 +0000)] 
Avoid mod_shout on sid/jessie for now

On sid the build breaks on "undefined reference to symbol
'ogg_sync_init'".  We'll just avoid mod_shout on sid/jessie until this
is worked out.

10 years agoMerge pull request #110 in FS/freeswitch from ~JCHAVANTON/freeswitch-opus:FS-6947...
Brian West [Wed, 12 Nov 2014 18:57:31 +0000 (12:57 -0600)] 
Merge pull request #110 in FS/freeswitch from ~JCHAVANTON/freeswitch-opus:FS-6947-opus to master

* commit '0eefdca47b127f8151c9b1a0b12eaf2d7e99def8':
  FS-6947 Opus RTP payload fmtp settings ( maxaveragebitrate / maxplaybackrate )

10 years agofix a few issues
Brian West [Wed, 12 Nov 2014 18:49:57 +0000 (12:49 -0600)] 
fix a few issues

10 years agoFS-6947 Opus RTP payload fmtp settings ( maxaveragebitrate / maxplaybackrate )
Julien Chavanton [Wed, 12 Nov 2014 08:06:11 +0000 (09:06 +0100)] 
FS-6947 Opus RTP payload fmtp settings ( maxaveragebitrate / maxplaybackrate )

10 years agofix compiler warning on unmatched return type
Seven Du [Wed, 12 Nov 2014 05:31:30 +0000 (13:31 +0800)] 
fix compiler warning on unmatched return type

10 years agoadd external_video_source to media handle and expose switch_core_media_start_video_th...
Seven Du [Wed, 12 Nov 2014 00:39:35 +0000 (08:39 +0800)] 
add external_video_source to media handle and expose switch_core_media_start_video_thread() to start the core video thread for non-rtp based media

10 years agoFS-6977 #resolve
Brian West [Wed, 12 Nov 2014 00:18:27 +0000 (18:18 -0600)] 
FS-6977 #resolve

10 years agoMerge pull request #109 in FS/freeswitch from ~NNEUL/freeswitch:bugfix-fs-6983 to...
Mike Jerris [Wed, 12 Nov 2014 00:16:57 +0000 (18:16 -0600)] 
Merge pull request #109 in FS/freeswitch from ~NNEUL/freeswitch:bugfix-fs-6983 to master

* commit 'dbc5571594eeacc4e3c7f2de3c78f8dd5c12f087':
  FS-6983 wrap new curl TLS macro usage with ifdefs

10 years agoMerge pull request #105 in FS/freeswitch from ~SEVEN/freeswitch-verto-spaces-new...
Mike Jerris [Tue, 11 Nov 2014 22:27:10 +0000 (16:27 -0600)] 
Merge pull request #105 in FS/freeswitch from ~SEVEN/freeswitch-verto-spaces-new:master to master

* commit 'eb3a27ccee10f72df4bc237d5254a5c8636f3205':
  use 4 spaces indent to match the default of jslint

10 years agoFS-6983 wrap new curl TLS macro usage with ifdefs
Nathan Neulinger [Tue, 11 Nov 2014 22:26:44 +0000 (16:26 -0600)] 
FS-6983 wrap new curl TLS macro usage with ifdefs

10 years agoMerge pull request #108 in FS/freeswitch from ~NNEUL/freeswitch:feature-dialplan...
Mike Jerris [Tue, 11 Nov 2014 21:19:21 +0000 (15:19 -0600)] 
Merge pull request #108 in FS/freeswitch from ~NNEUL/freeswitch:feature-dialplan-tstamps to master

* commit 'f175c7118879b882343da9b6f15075161923fcca':
  FS-6805 add support for logging full timestamps with dialplan, defaults to old behavior unless requested

10 years agoPLIV-13 #resolve
Anthony Minessale [Tue, 11 Nov 2014 20:51:19 +0000 (14:51 -0600)] 
PLIV-13 #resolve

10 years agoFS-6957 #resolve
Anthony Minessale [Tue, 11 Nov 2014 19:37:46 +0000 (13:37 -0600)] 
FS-6957 #resolve

10 years agoFS-6805 add support for logging full timestamps with dialplan, defaults to old behavi...
Nathan Neulinger [Tue, 11 Nov 2014 19:25:47 +0000 (13:25 -0600)] 
FS-6805 add support for logging full timestamps with dialplan, defaults to old behavior unless requested

10 years agoFS-6890 #comment please test
Anthony Minessale [Tue, 11 Nov 2014 18:56:40 +0000 (12:56 -0600)] 
FS-6890 #comment please test

10 years agouse 4 spaces indent to match the default of jslint
Seven Du [Tue, 11 Nov 2014 15:33:03 +0000 (23:33 +0800)] 
use 4 spaces indent to match the default of jslint

this is the first step of making the code follow the default jslint behaviour,
I also manually changed some { } to make it reasonable in addition to replacing tabs

10 years agoreduce logging when level is below 9 for less important messages
Nathan Neulinger [Tue, 11 Nov 2014 15:11:44 +0000 (09:11 -0600)] 
reduce logging when level is below 9 for less important messages

10 years agoFS-5533 fix issue with busy signal being sent back to all shared lines instead of...
Nathan Neulinger [Tue, 11 Nov 2014 14:41:16 +0000 (08:41 -0600)] 
FS-5533 fix issue with busy signal being sent back to all shared lines instead of just the calling device

10 years agoFS-6980 #resolve don't crash when using native recording on recordstop
Brian West [Tue, 11 Nov 2014 13:45:50 +0000 (07:45 -0600)] 
FS-6980 #resolve don't crash when using native recording on recordstop

10 years agofix mod_say_es_ar Makefile.am
Michael Jerris [Mon, 10 Nov 2014 16:12:56 +0000 (11:12 -0500)] 
fix mod_say_es_ar Makefile.am

10 years agoRevert "Revert "FS-6967 New mod_say_es_AR to support Argentina Spanish variant.""
Michael Jerris [Mon, 10 Nov 2014 16:12:15 +0000 (11:12 -0500)] 
Revert "Revert "FS-6967 New mod_say_es_AR to support Argentina Spanish variant.""

This reverts commit d9d9510ce4783879ea10a06114d5695a637dcd87.

10 years agoMerge remote-tracking branch 'moystash/em-suspend-support'
Moises Silva [Sun, 9 Nov 2014 08:50:07 +0000 (03:50 -0500)] 
Merge remote-tracking branch 'moystash/em-suspend-support'

Conflicts:
libs/freetdm/src/include/private/ftdm_core.h

10 years agofreetdm: Fix release guard timer check
Moises Silva [Sun, 9 Nov 2014 08:41:59 +0000 (00:41 -0800)] 
freetdm: Fix release guard timer check

10 years agoOPENZAP-232 #resolve
Moises Silva [Sun, 9 Nov 2014 08:33:08 +0000 (03:33 -0500)] 
OPENZAP-232 #resolve
Patched-By: Florian Richter
Check for digits received on sangoma isdn stack to avoid delaying
moving to the ring state if all digits are received at once in
overlap dialing mode

10 years agoRevert "FS-6967 New mod_say_es_AR to support Argentina Spanish variant."
Ken Rice [Sat, 8 Nov 2014 21:13:05 +0000 (15:13 -0600)] 
Revert "FS-6967 New mod_say_es_AR to support Argentina Spanish variant."
This reverts commit e75d0675afd8974687931143709814544299fadc.

Revert "Add mod_say_es_ar to debian packaging"
This reverts commit ebb3c8fbfa3ec8b9f4b4a2ef20d62d343c8ff6c4.

Conflicts:
configure.ac

10 years agoMerge branch 'master' of ssh://stash.freeswitch.org:7999/fs/freeswitch
Brian West [Fri, 7 Nov 2014 23:41:31 +0000 (17:41 -0600)] 
Merge branch 'master' of ssh://stash.freeswitch.org:7999/fs/freeswitch

10 years agoFS-6973 revert this line
Brian West [Fri, 7 Nov 2014 23:41:29 +0000 (17:41 -0600)] 
FS-6973 revert this line

10 years agofix regression caused by missing ! char in commit: 4eb5b388
Anthony Minessale [Fri, 7 Nov 2014 23:11:40 +0000 (17:11 -0600)] 
fix regression caused by missing ! char in commit: 4eb5b388

10 years agoadd command to comppile non-minified js file for testing
Anthony Minessale [Fri, 7 Nov 2014 23:10:53 +0000 (17:10 -0600)] 
add command to comppile non-minified js file for testing

10 years agoMerge branch 'master' of ssh://stash.freeswitch.org:7999/fs/freeswitch
Brian West [Fri, 7 Nov 2014 22:45:35 +0000 (16:45 -0600)] 
Merge branch 'master' of ssh://stash.freeswitch.org:7999/fs/freeswitch

10 years agoFS-6973 #resolve
Brian West [Fri, 7 Nov 2014 22:45:32 +0000 (16:45 -0600)] 
FS-6973 #resolve

10 years agoAdd mod_say_es_ar to debian packaging
Travis Cross [Fri, 7 Nov 2014 18:53:46 +0000 (18:53 +0000)] 
Add mod_say_es_ar to debian packaging

10 years agoAdd mod_odbc_cdr to debian packaging
Travis Cross [Fri, 7 Nov 2014 18:53:33 +0000 (18:53 +0000)] 
Add mod_odbc_cdr to debian packaging

10 years agoFix placement of build-dep for libsngtc-dev
Travis Cross [Fri, 7 Nov 2014 18:52:11 +0000 (18:52 +0000)] 
Fix placement of build-dep for libsngtc-dev

Since we compare our generated control-modules to the one in tree, we
want to match the exact format we use to generate the file.

10 years agodebian: Remove duplicate clean command
Peter Wu [Wed, 30 Jul 2014 17:20:08 +0000 (19:20 +0200)] 
debian: Remove duplicate clean command

`dh clean` invokes `dh_testdir`, `dh_auto_clean` and `dh_clean`. We
don't need to invoke dh_clean twice.

Acked-by: Travis Cross <tc@traviscross.com>
10 years agoRPM packaging - add mongo C driver to list of sources
Chris Rienzo [Fri, 7 Nov 2014 18:22:22 +0000 (13:22 -0500)] 
RPM packaging - add mongo C driver to list of sources

10 years agoFix whitespace inconsistency
Travis Cross [Fri, 7 Nov 2014 18:17:46 +0000 (18:17 +0000)] 
Fix whitespace inconsistency

10 years agodebian: Allow use of secondary groups
Peter Wu [Mon, 15 Sep 2014 18:49:42 +0000 (20:49 +0200)] 
debian: Allow use of secondary groups

When '-g' is passed, freeswitch drops all other groups except for the
given group.  This impacts people who depend on FS having access to
resources that would be allowed by membership to those other groups.

It was possible to override this by setting DAEMON_ARGS in
/etc/default/freeswitch, but we'll go ahead and make this the default.

Since freeswitch uses the primary group of a user when `-g` is
omitted, we'll just omit it, and do similarly when setting the
ownership of our directory in /var/run.

Edited-by: Travis Cross <tc@traviscross.com>
10 years agoFS-6969 #resolve #comment This patch should accomplish the same and handle other...
Anthony Minessale [Fri, 7 Nov 2014 14:37:53 +0000 (08:37 -0600)] 
FS-6969 #resolve #comment This patch should accomplish the same and handle other platforms, please test

10 years agoMerge pull request #49 in FS/freeswitch from ~VIPKILLA/freeswitch-mod_odbc_cdr:master...
Mike Jerris [Fri, 7 Nov 2014 14:34:55 +0000 (08:34 -0600)] 
Merge pull request #49 in FS/freeswitch from ~VIPKILLA/freeswitch-mod_odbc_cdr:master to master

* commit '544c5faf5e6ce6fe2b87523304d1f00e2d201d90':
  Add module mod_odbc_cdr

10 years agoMerge pull request #68 in FS/freeswitch from ~HRISTO/freeswitch:interrupt-conf-moh...
Mike Jerris [Fri, 7 Nov 2014 14:09:05 +0000 (08:09 -0600)] 
Merge pull request #68 in FS/freeswitch from ~HRISTO/freeswitch:interrupt-conf-moh to master

* commit '94278b5e545b58bad784a95da6181fc5f299457f':
  allow enter and exit sounds to interrupt the MOH in a wait_mod conference

10 years agoMerge pull request #102 in FS/freeswitch from ~AMARUS_CAMERON/freeswitch:mod_fifo...
Mike Jerris [Fri, 7 Nov 2014 14:06:54 +0000 (08:06 -0600)] 
Merge pull request #102 in FS/freeswitch from ~AMARUS_CAMERON/freeswitch:mod_fifo-outbound_per_cycle_min to master

* commit '1944f9a5ee63ec51bed1bfb900072d168a81d004':
  FS-6968 Changes to mod_fifo.c to add outbound_per_cycle_min

10 years agoMight needs this for testing.
Brian West [Fri, 7 Nov 2014 13:26:31 +0000 (07:26 -0600)] 
Might needs this for testing.

10 years agoMerge branch 'master' of ssh://stash.freeswitch.org:7999/fs/freeswitch
Brian West [Fri, 7 Nov 2014 00:26:28 +0000 (18:26 -0600)] 
Merge branch 'master' of ssh://stash.freeswitch.org:7999/fs/freeswitch

10 years agoFS-6954 #resolve #comment please test
Anthony Minessale [Fri, 7 Nov 2014 00:26:16 +0000 (18:26 -0600)] 
FS-6954 #resolve #comment please test

10 years agoFS-6968 Changes to mod_fifo.c to add outbound_per_cycle_min
Aaron Paolozzi [Fri, 7 Nov 2014 00:21:58 +0000 (19:21 -0500)] 
FS-6968 Changes to mod_fifo.c to add outbound_per_cycle_min

10 years agoMerge pull request #50 in FS/freeswitch from ~JMESQUITA/freeswitch:mod_say_es_AR...
Mike Jerris [Thu, 6 Nov 2014 23:21:08 +0000 (17:21 -0600)] 
Merge pull request #50 in FS/freeswitch from ~JMESQUITA/freeswitch:mod_say_es_AR to master

* commit 'e75d0675afd8974687931143709814544299fadc':
  FS-6967 New mod_say_es_AR to support Argentina Spanish variant.

10 years agoFS-6890 #comment please test
Anthony Minessale [Thu, 6 Nov 2014 23:13:02 +0000 (17:13 -0600)] 
FS-6890 #comment please test

10 years agoFS-6967 New mod_say_es_AR to support Argentina Spanish variant.
Joao Mesquita [Tue, 9 Sep 2014 16:44:50 +0000 (13:44 -0300)] 
FS-6967 New mod_say_es_AR to support Argentina Spanish variant.

10 years agomod_rayo: update config to use spandsp_start_tone_detect and spandsp_stop_tone_detect
Chris Rienzo [Thu, 6 Nov 2014 19:54:55 +0000 (14:54 -0500)] 
mod_rayo: update config to use spandsp_start_tone_detect and spandsp_stop_tone_detect

10 years agoRenaming mod_spandsp's cadence + tone detection APPs and APIs (start_tone_detect...
Chris Rienzo [Thu, 6 Nov 2014 19:46:56 +0000 (14:46 -0500)] 
Renaming mod_spandsp's cadence + tone detection APPs and APIs (start_tone_detect / stop_tone_detect) to
spandsp_start_tone_detect and spandsp_stop_tone_detect to resolve conflict with mod_dptools'
tone_detect/stop_tone_detect APPs.

10 years agoallow enter and exit sounds to interrupt the MOH in a wait_mod conference
Hristo Trendev [Wed, 24 Sep 2014 12:25:39 +0000 (14:25 +0200)] 
allow enter and exit sounds to interrupt the MOH in a wait_mod conference

This patch does the following:
* only starts MOH if no other file (sync or async) is currently playing
* adds a variable "conference_permanent_wait_mod_moh" that controls the
  behavior of how the enter and exit sounds interact with the MOH when
  wait_mod is set. When the variable is set, the MOH keeps playing and
  the enter and exit sounds are mixed with the MOH. When the variable
  is unset, then any playing MOH is first stopped, then the enter or
  exit sound is played and the MOH is started again.

This functionality is useful in case the enter and exit sounds are
used to announce the name of the caller, who is joining or leaving a
conference.

FS-5159 #resolve

10 years agoMerge pull request #57 in FS/freeswitch from ~LEKENSTEYN/freeswitch:fixes to master
Mike Jerris [Thu, 6 Nov 2014 17:48:12 +0000 (11:48 -0600)] 
Merge pull request #57 in FS/freeswitch from ~LEKENSTEYN/freeswitch:fixes to master

* commit '8e4423f126b9476123c6fa8c41c5f8ebfe1d0cb5':
  Document Dbh.test_reactive, return saner values

10 years agoMerge pull request #101 in FS/freeswitch from ~RAVENOX/freeswitch:fixes_for_pull_requ...
Mike Jerris [Thu, 6 Nov 2014 17:42:35 +0000 (11:42 -0600)] 
Merge pull request #101 in FS/freeswitch from ~RAVENOX/freeswitch:fixes_for_pull_request_#93 to master

* commit 'c97c0e8a7805f15fd52e7400b3a984d981e2524a':
  Fix for  case-sensitive filesystems
  Fixed code formatting. Return ListDelegate

10 years agoImprove init error message when FS is unconfigured
Travis Cross [Thu, 6 Nov 2014 16:30:44 +0000 (16:30 +0000)] 
Improve init error message when FS is unconfigured

Depending on which packages are installed, the README.Debian file
might not be there, so we'll spell out the instructions more directly.

10 years agoFS-6965 #resolve
Brian West [Thu, 6 Nov 2014 15:47:54 +0000 (09:47 -0600)] 
FS-6965 #resolve

10 years agoAdding rfc6598.auto and adding rfc6598 space to nat.auto acl, This is the NAT444...
Brian West [Thu, 6 Nov 2014 14:55:03 +0000 (08:55 -0600)] 
Adding rfc6598.auto and adding rfc6598 space to nat.auto acl, This is the NAT444 carrier grade nat space

10 years agoFix for case-sensitive filesystems
Artur Kraev [Thu, 6 Nov 2014 09:36:02 +0000 (12:36 +0300)] 
Fix for  case-sensitive filesystems

10 years agoFixed code formatting.
Artur Kraev [Thu, 6 Nov 2014 09:27:34 +0000 (12:27 +0300)] 
Fixed code formatting.
Return ListDelegate

10 years agoMerge pull request #69 in FS/freeswitch from ~HRISTO/freeswitch:conference-flags...
Mike Jerris [Wed, 5 Nov 2014 22:25:40 +0000 (16:25 -0600)] 
Merge pull request #69 in FS/freeswitch from ~HRISTO/freeswitch:conference-flags to master

* commit '3695bdd9e4e0d925ab7296d2f4ce120bf656f623':
  set conference flags from a dial plan variable or via +flags{ }

10 years agoMerge pull request #48 in FS/freeswitch from ~ANTONIO/freeswitch-fs-6809:master to...
Mike Jerris [Wed, 5 Nov 2014 22:05:00 +0000 (16:05 -0600)] 
Merge pull request #48 in FS/freeswitch from ~ANTONIO/freeswitch-fs-6809:master to master

* commit '69d5cda6d67074d6e5c1b7038b4dd7cab0adf60f':
  resolve FS-6809

10 years agoFS-6954 #comment we fixed another bug and this is the side effect which is completely...
Anthony Minessale [Wed, 5 Nov 2014 17:51:30 +0000 (11:51 -0600)] 
FS-6954 #comment we fixed another bug and this is the side effect which is completely valid, too bad you can never fix broken t38 endpoints.  Can you please test this patch

10 years agoFS-6890 #comment please test
Anthony Minessale [Wed, 5 Nov 2014 17:35:13 +0000 (11:35 -0600)] 
FS-6890 #comment please test

10 years agofix bug where re-invites needlessly re-init the codec and jb
Anthony Minessale [Wed, 5 Nov 2014 17:34:00 +0000 (11:34 -0600)] 
fix bug where re-invites needlessly re-init the codec and jb

10 years agoMerge pull request #98 in FS/freeswitch from ~BRIAN/freeswitch-testing:bugfix/FS...
Mike Jerris [Wed, 5 Nov 2014 17:07:50 +0000 (11:07 -0600)] 
Merge pull request #98 in FS/freeswitch from ~BRIAN/freeswitch-testing:bugfix/FS-6916-mod_xml_radius-mistakes-correction to master

* commit '01395c508b180b313efb57ad11396676511c21d2':
  FS-6916 fix typos in code

10 years agoFS-6916 fix typos in code
Brian West [Wed, 5 Nov 2014 16:58:35 +0000 (10:58 -0600)] 
FS-6916 fix typos in code

10 years agoFS-6831 while you can already unset by calling set with var=, same with set in dialpl...
Brian West [Wed, 5 Nov 2014 15:44:24 +0000 (09:44 -0600)] 
FS-6831 while you can already unset by calling set with var=, same with set in dialplan this is a convience function similar to our unset in dialplan

10 years agorevert 831832c2c62aaec9039bfc5e2d081b960d5856f4
Anthony Minessale [Wed, 5 Nov 2014 15:26:33 +0000 (09:26 -0600)] 
revert 831832c2c62aaec9039bfc5e2d081b960d5856f4

10 years agoadd reconf target
Michael Jerris [Wed, 5 Nov 2014 14:44:04 +0000 (09:44 -0500)] 
add reconf target

10 years agoFS-6890 #please test
Anthony Minessale [Wed, 5 Nov 2014 00:31:39 +0000 (18:31 -0600)] 
FS-6890 #please test

10 years agoMerge pull request #93 in FS/freeswitch from ~RAVENOX/freeswitch:mod_managed_improvem...
Mike Jerris [Tue, 4 Nov 2014 22:35:11 +0000 (16:35 -0600)] 
Merge pull request #93 in FS/freeswitch from ~RAVENOX/freeswitch:mod_managed_improvements to master

* commit '889b678e58bf38eb86df7885b8f054d3d9d92d74':
  mod_managed: Added GetPtr to Util class for internal pointers extraction (very useful when using native api)
  mod_managed: Added pure CreateStateHandlerDelegate in ManagedSession for native api usage
  mod_managed: added console log level
  mod_managed: support per-module references directory
  mod_managed: not crash when cannot remove shadow directory (this sometimes happens when restarting from FS console)
  mod_managed: managedlist command must return value to api stream instead of log

10 years agoadded mod_graylog2 and mod_mongo to RPM package. Added graylog.conf.xml to vanilla...
Chris Rienzo [Tue, 4 Nov 2014 20:18:11 +0000 (15:18 -0500)] 
added mod_graylog2 and mod_mongo to RPM package.  Added graylog.conf.xml to vanilla config, but disabled in modules.conf.xml

10 years agoMerge pull request #60 in FS/freeswitch from ~SJTHOMASON/freeswitch:FS-6823 to master
Brian West [Tue, 4 Nov 2014 13:36:36 +0000 (07:36 -0600)] 
Merge pull request #60 in FS/freeswitch from ~SJTHOMASON/freeswitch:FS-6823 to master

* commit 'afb00b2ecc8a9b049801f3f475c80e1111070fa8':
  Force rport on ADTRAN TA Devices

10 years agoremove debugging printf
Brian West [Mon, 3 Nov 2014 20:17:24 +0000 (14:17 -0600)] 
remove debugging printf

10 years agoFix copy and paste error CID 1250786
Brian West [Mon, 3 Nov 2014 20:15:04 +0000 (14:15 -0600)] 
Fix copy and paste error CID 1250786

10 years agoFS-6956 modify commit 16365501 to use one single line which is only tolerable way...
Anthony Minessale [Mon, 3 Nov 2014 20:03:04 +0000 (14:03 -0600)] 
FS-6956 modify commit 16365501 to use one single line which is only tolerable way to have bracket-less if stmts.

10 years agoFS-6953 #resolve
Brian West [Mon, 3 Nov 2014 17:40:12 +0000 (11:40 -0600)] 
FS-6953 #resolve

10 years agoFS-6957 #resolve
Anthony Minessale [Mon, 3 Nov 2014 17:32:40 +0000 (11:32 -0600)] 
FS-6957 #resolve

10 years agomod_managed: Added GetPtr to Util class for internal pointers extraction (very useful...
Artur Kraev [Sun, 2 Nov 2014 21:43:59 +0000 (00:43 +0300)] 
mod_managed: Added GetPtr to Util class for internal pointers extraction (very useful when using native api)

10 years agomod_managed: Added pure CreateStateHandlerDelegate in ManagedSession for native api...
Artur Kraev [Sun, 2 Nov 2014 21:42:00 +0000 (00:42 +0300)] 
mod_managed: Added pure CreateStateHandlerDelegate in ManagedSession for native api usage

10 years agomod_managed: added console log level
Artur Kraev [Sun, 2 Nov 2014 21:34:04 +0000 (00:34 +0300)] 
mod_managed: added console log level

10 years agomod_managed: support per-module references directory
Artur Kraev [Sun, 2 Nov 2014 21:32:30 +0000 (00:32 +0300)] 
mod_managed: support per-module references directory

10 years agomod_managed: not crash when cannot remove shadow directory (this sometimes happens...
Artur Kraev [Sun, 2 Nov 2014 21:24:49 +0000 (00:24 +0300)] 
mod_managed: not crash when cannot remove shadow directory (this sometimes happens when restarting from FS console)