]> git.ipfire.org Git - thirdparty/freeswitch.git/log
thirdparty/freeswitch.git
15 years agoupdate
Anthony Minessale [Thu, 11 Nov 2010 21:37:48 +0000 (15:37 -0600)] 
update

15 years agoftmod_libpri: While we're at it, drop the cast too
Stefan Knoblich [Thu, 11 Nov 2010 21:21:18 +0000 (22:21 +0100)] 
ftmod_libpri: While we're at it, drop the cast too

Signed-off-by: Stefan Knoblich <s.knoblich@axsentis.de>
15 years agoftmod_libpri: Dereference facility event correctly, add debug message.
Stefan Knoblich [Thu, 11 Nov 2010 21:17:09 +0000 (22:17 +0100)] 
ftmod_libpri: Dereference facility event correctly, add debug message.

Signed-off-by: Stefan Knoblich <s.knoblich@axsentis.de>
15 years agoFS-2839
Anthony Minessale [Thu, 11 Nov 2010 18:32:29 +0000 (12:32 -0600)] 
FS-2839

15 years agoadd send_silence_when_idle and dmachine honoring to park loop
Anthony Minessale [Thu, 11 Nov 2010 16:54:04 +0000 (10:54 -0600)] 
add send_silence_when_idle and dmachine honoring to park loop

15 years agodeclinatio mortuus obfirmo!
Anthony Minessale [Thu, 11 Nov 2010 16:49:02 +0000 (10:49 -0600)] 
declinatio mortuus obfirmo!

15 years agoMakefile changes for x86_64 arch, thnx Steven Ayre and ptlib include path fix.
root [Thu, 11 Nov 2010 07:56:10 +0000 (10:56 +0300)] 
Makefile changes for x86_64 arch, thnx Steven Ayre and ptlib include path fix.

15 years agomod_sangoma_codec: fix G722
Moises Silva [Thu, 11 Nov 2010 00:51:28 +0000 (19:51 -0500)] 
mod_sangoma_codec: fix G722

15 years agoFixed conflicts
David Yat Sin [Thu, 11 Nov 2010 00:23:48 +0000 (19:23 -0500)] 
Fixed conflicts

15 years agoMerge branch 'master' into netborder
David Yat Sin [Thu, 11 Nov 2010 00:22:27 +0000 (19:22 -0500)] 
Merge branch 'master' into netborder

Conflicts:
libs/freetdm/src/ftmod/ftmod_sangoma_isdn/ftmod_sangoma_isdn.c
libs/freetdm/src/ftmod/ftmod_sangoma_isdn/ftmod_sangoma_isdn.h
libs/freetdm/src/ftmod/ftmod_sangoma_isdn/ftmod_sangoma_isdn_stack_cntrl.c
libs/freetdm/src/ftmod/ftmod_sangoma_isdn/ftmod_sangoma_isdn_support.c
libs/freetdm/src/include/private/ftdm_core.h

15 years agoupdate
Anthony Minessale [Thu, 11 Nov 2010 00:08:55 +0000 (18:08 -0600)] 
update

15 years agofreetdm: ISDN - Changes to used ftdm IO for d-channel
David Yat Sin [Thu, 11 Nov 2010 00:03:15 +0000 (19:03 -0500)] 
freetdm: ISDN - Changes to used ftdm IO for d-channel

15 years agoftmod_libpri: Minor cleanups in ftdm_libpri_configure_span().
Stefan Knoblich [Wed, 10 Nov 2010 23:16:25 +0000 (00:16 +0100)] 
ftmod_libpri: Minor cleanups in ftdm_libpri_configure_span().

Move some things around and remove 'paramindex' var (just use 'i' for that too).

Signed-off-by: Stefan Knoblich <s.knoblich@axsentis.de>
15 years agoftmod_libpri: "ftdm libpri debug <span>" now prints the current debug flags
Stefan Knoblich [Wed, 10 Nov 2010 23:03:06 +0000 (00:03 +0100)] 
ftmod_libpri: "ftdm libpri debug <span>" now prints the current debug flags

Signed-off-by: Stefan Knoblich <s.knoblich@axsentis.de>
15 years agoadd manual_rtp_bugs to profile and chan var and 3 new RTP bugs SEND_LINEAR_TIMESTAMPS...
Anthony Minessale [Wed, 10 Nov 2010 22:55:56 +0000 (16:55 -0600)] 
add manual_rtp_bugs to profile and chan var and 3 new RTP bugs SEND_LINEAR_TIMESTAMPS|START_SEQ_AT_ZERO|NEVER_SEND_MARKER

RTP_BUG_SEND_LINEAR_TIMESTAMPS = (1 << 3),

  Our friends at Sonus get real mad when the timestamps are not in perfect sequence even during periods of silence.
  With this flag, we will only increment the timestamp when write packets even if they are eons apart.

RTP_BUG_START_SEQ_AT_ZERO = (1 << 4),

  Our friends at Sonus also get real mad if the sequence number does not start at 0.
  Typically, we set this to a random starting value for your saftey.
  This is a security risk you take upon yourself when you enable this flag.

RTP_BUG_NEVER_SEND_MARKER = (1 << 5),

  Our friends at Sonus are on a roll, They also get easily dumbfounded by marker bits.
  This flag will never send any. Sheesh....

15 years agomod_sangoma_codec: add G722
Moises Silva [Wed, 10 Nov 2010 22:27:27 +0000 (17:27 -0500)] 
mod_sangoma_codec: add G722

15 years agoftmod_libpri: Clean up misnamed parameters and variables, remove unused.
Stefan Knoblich [Wed, 10 Nov 2010 21:42:18 +0000 (22:42 +0100)] 
ftmod_libpri: Clean up misnamed parameters and variables, remove unused.

- Add alias names for parameters:
     "node"   -> "mode"
     "dp"     -> "ton"
     "switch" -> "dialect"
     "l1"     -> "layer1"

  (Switching between ftmod_libpri and ftmod_isdn is easier now.)

- Removed unused members from struct ftdm_libpri_data
  and rename misnamed ones

Signed-off-by: Stefan Knoblich <s.knoblich@axsentis.de>
15 years agoftmod_libpri: Major cleanup, enhance configuration checks
Stefan Knoblich [Wed, 10 Nov 2010 20:17:02 +0000 (21:17 +0100)] 
ftmod_libpri: Major cleanup, enhance configuration checks

- Check D and B-channel availability (could be extended to check B-channel count)

- Drop usage of spri->private_info, use spri->span instead
- Use accessor functions where possible
- Rename ftdmchan to chan where possible
- Various other cleanups

Signed-off-by: Stefan Knoblich <s.knoblich@axsentis.de>
Tested-by: Stefan Knoblich <s.knoblich@axsentis.de>
15 years agomod_mp4 -- Supports playback of MP4 files.
Paulo R. Panhoto [Wed, 10 Nov 2010 18:27:43 +0000 (16:27 -0200)] 
mod_mp4 -- Supports playback of MP4 files.

* depends on libmp4v2 <http://code.google.com/p/mp4v2/>
(originally compiled against v1.6.1)

* File format details:
- Files must be hinted (mpeg4ip can be used to create the hint
  tracks).
- Video track encoding must be supported by FS (e.g. H.263)
- Audio track encoding must be PCMU/8000/Mono. The audio track
  can be created with this tool:
<https://asteriskvideo.svn.sourceforge.net/svnroot/asteriskvideo/tools/pcm2mp4.cpp>

15 years agoswig
Anthony Minessale [Wed, 10 Nov 2010 16:30:18 +0000 (10:30 -0600)] 
swig

15 years agofreetdm:Fix for RDNIS not set
David Yat Sin [Wed, 10 Nov 2010 15:32:50 +0000 (10:32 -0500)] 
freetdm:Fix for RDNIS not set

15 years agofreetdm:Fix for RDNIS not set
David Yat Sin [Wed, 10 Nov 2010 15:32:50 +0000 (10:32 -0500)] 
freetdm:Fix for RDNIS not set

15 years agofreetdm: do not declare some sangoma ISDN functions as inline
Moises Silva [Wed, 10 Nov 2010 00:27:45 +0000 (19:27 -0500)] 
freetdm: do not declare some sangoma ISDN functions as inline
         as that does not work on gcc (Debian 4.3.2-1.1) 4.3.2
         and probably other compilers when the inlined function
         is not defined in the same compilation unit

15 years agoftmod_libpri: Completely disable on_facility if AOC support is not available in libpr...
Stefan Knoblich [Wed, 10 Nov 2010 00:28:30 +0000 (01:28 +0100)] 
ftmod_libpri: Completely disable on_facility if AOC support is not available in libpri (= is too old).

Signed-off-by: Stefan Knoblich <s.knoblich@axsentis.de>
15 years agoMerge branch 'master' of ssh://git.freeswitch.org/freeswitch
Stefan Knoblich [Tue, 9 Nov 2010 23:48:59 +0000 (00:48 +0100)] 
Merge branch 'master' of ssh://git.freeswitch.org/freeswitch

15 years agoftmod_libpri: Check if a span really has a D-Channel.
Stefan Knoblich [Tue, 9 Nov 2010 23:47:16 +0000 (00:47 +0100)] 
ftmod_libpri: Check if a span really has a D-Channel.

Signed-off-by: Stefan Knoblich <s.knoblich@axsentis.de>
15 years agomod_sangoma_codec: register AMR
Moises Silva [Tue, 9 Nov 2010 22:58:27 +0000 (17:58 -0500)] 
mod_sangoma_codec: register AMR

15 years agoMerge branch 'master' of git.sangoma.com:smg_freeswitch
David Yat Sin [Tue, 9 Nov 2010 21:54:24 +0000 (16:54 -0500)] 
Merge branch 'master' of git.sangoma.com:smg_freeswitch

15 years agofreetdm: ISDN - Fix for not waking up the line on power-saving lines
David Yat Sin [Tue, 9 Nov 2010 21:34:34 +0000 (16:34 -0500)] 
freetdm: ISDN - Fix for not waking up the line on power-saving lines

15 years agofix previous merge side-effect in build files
Moises Silva [Tue, 9 Nov 2010 19:11:02 +0000 (14:11 -0500)] 
fix previous merge side-effect in build files

15 years agoMerge remote branch 'smgfs/master'
Moises Silva [Tue, 9 Nov 2010 18:40:46 +0000 (13:40 -0500)] 
Merge remote branch 'smgfs/master'

15 years agoMerge branch 'master' of git://git.freeswitch.org/freeswitch
Moises Silva [Tue, 9 Nov 2010 17:59:48 +0000 (12:59 -0500)] 
Merge branch 'master' of git://git.freeswitch.org/freeswitch

Conflicts:
conf/autoload_configs/modules.conf.xml
libs/freetdm/src/ftdm_sched.c
libs/freetdm/src/ftmod/ftmod_libpri/ftmod_libpri.c

15 years agoFS-2833
Anthony Minessale [Tue, 9 Nov 2010 17:53:01 +0000 (11:53 -0600)] 
FS-2833

15 years agorefactor STFU a bit
Anthony Minessale [Tue, 9 Nov 2010 17:49:07 +0000 (11:49 -0600)] 
refactor STFU a bit

15 years agofreetdm: minor changes to ftmod_r2
Moises Silva [Tue, 9 Nov 2010 17:22:53 +0000 (12:22 -0500)] 
freetdm: minor changes to ftmod_r2

15 years agoadd default_lag to fifo
Anthony Minessale [Tue, 9 Nov 2010 16:30:06 +0000 (10:30 -0600)] 
add default_lag to fifo

15 years agoadd outbound_ring_timeout param to mod_fifo
Anthony Minessale [Tue, 9 Nov 2010 15:46:03 +0000 (09:46 -0600)] 
add outbound_ring_timeout param to mod_fifo

15 years agoftmod_libpri: Bail out with an error message if libpri is too old and selected trunk...
Stefan Knoblich [Tue, 9 Nov 2010 14:51:30 +0000 (15:51 +0100)] 
ftmod_libpri: Bail out with an error message if libpri is too old and selected trunk type is BRI or BRI_PTMP

Signed-off-by: Stefan Knoblich <s.knoblich@axsentis.de>
15 years agoMerge branch 'master' of git.freeswitch.org:freeswitch
David Yat Sin [Mon, 8 Nov 2010 21:13:25 +0000 (16:13 -0500)] 
Merge branch 'master' of git.freeswitch.org:freeswitch

15 years agofreetdm: Fix for ftmod_wanpipe failing to compile because some structures are not
David Yat Sin [Mon, 8 Nov 2010 21:11:06 +0000 (16:11 -0500)] 
freetdm: Fix for ftmod_wanpipe failing to compile because some structures are not
compatible with std=c99

15 years agoavoid hypothetical problem with flushing queue with delayed events
Anthony Minessale [Mon, 8 Nov 2010 21:04:51 +0000 (15:04 -0600)] 
avoid hypothetical problem with flushing queue with delayed events

15 years agoMerge branch 'master' of ssh://git.freeswitch.org/freeswitch
Stefan Knoblich [Mon, 8 Nov 2010 19:57:47 +0000 (20:57 +0100)] 
Merge branch 'master' of ssh://git.freeswitch.org/freeswitch

15 years agoftmod_libpri: Minor cleanups.
Stefan Knoblich [Mon, 8 Nov 2010 19:57:21 +0000 (20:57 +0100)] 
ftmod_libpri: Minor cleanups.

Signed-off-by: Stefan Knoblich <s.knoblich@axsentis.de>
15 years agoFixed compile error
David Yat Sin [Mon, 8 Nov 2010 17:30:12 +0000 (12:30 -0500)] 
Fixed compile error

15 years agofreetdm: Merged arnaldo.sng_isdn branch (changes for win32 port)
David Yat Sin [Mon, 1 Nov 2010 14:24:11 +0000 (12:24 -0200)] 
freetdm: Merged arnaldo.sng_isdn branch (changes for win32 port)

15 years agoFS-2827
Anthony Minessale [Mon, 8 Nov 2010 16:14:46 +0000 (10:14 -0600)] 
FS-2827

15 years agoFS-2824
Anthony Minessale [Mon, 8 Nov 2010 16:13:35 +0000 (10:13 -0600)] 
FS-2824

15 years agoFS-2825 add additional info when fail
Jeff Lenk [Mon, 8 Nov 2010 14:05:23 +0000 (08:05 -0600)] 
FS-2825 add additional info when fail

15 years agoftmod_libpri: clarify why we enable facility conditionally
Stefan Knoblich [Sun, 7 Nov 2010 23:57:50 +0000 (00:57 +0100)] 
ftmod_libpri: clarify why we enable facility conditionally

Signed-off-by: Stefan Knoblich <s.knoblich@axsentis.de>
15 years agoMerge branch 'master' of ssh://git.freeswitch.org/freeswitch
Stefan Knoblich [Sun, 7 Nov 2010 23:54:58 +0000 (00:54 +0100)] 
Merge branch 'master' of ssh://git.freeswitch.org/freeswitch

15 years agoftmod_libpri: First attempt at getting AOC Facility messages going (and minor cleanups)
Stefan Knoblich [Sun, 7 Nov 2010 23:43:09 +0000 (00:43 +0100)] 
ftmod_libpri: First attempt at getting AOC Facility messages going (and minor cleanups)

Requires libpri-1.4.12_beta1 or newer!
Completely untested, AOC-S/D/E ChargingRequest operations are sent to NT (DTAG BRI PTMP),
but rejected with "Unrecognized Operation".

NOTE: FreeTDM core needs support for this to be useful!
      Only AOC-E events are decoded and sent to the log.

To enable:
    Set (or add) <param name="opts" value="aoc"> in your
    libpri_spans span config.

Signed-off-by: Stefan Knoblich <s.knoblich@axsentis.de>
15 years agoopenzap: fix mismatch in enum types
Moises Silva [Sun, 7 Nov 2010 21:57:11 +0000 (16:57 -0500)] 
openzap: fix mismatch in enum types

15 years agoFS-2826 more fixes for sounds
Jeff Lenk [Sun, 7 Nov 2010 20:35:29 +0000 (14:35 -0600)] 
FS-2826 more fixes for sounds

15 years agoFS-2826 FreeSwitchCoreLib Visual Studio x64 build error
Jeff Lenk [Sun, 7 Nov 2010 19:05:01 +0000 (13:05 -0600)] 
FS-2826 FreeSwitchCoreLib Visual Studio x64 build error

15 years agoftmod_libpri: Write fatal error message during span configuration to console (and...
Stefan Knoblich [Sun, 7 Nov 2010 18:55:00 +0000 (19:55 +0100)] 
ftmod_libpri: Write fatal error message during span configuration to console (and to span error log).

Signed-off-by: Stefan Knoblich <s.knoblich@axsentis.de>
15 years agoftmod_libpri: Improve "ftdm libpri debug" usage information.
Stefan Knoblich [Sun, 7 Nov 2010 16:22:22 +0000 (17:22 +0100)] 
ftmod_libpri: Improve "ftdm libpri debug" usage information.

"all" and "none" can only be used alone,
other flags are additive.

Signed-off-by: Stefan Knoblich <s.knoblich@axsentis.de>
15 years agofreetdm: convert ftmod_libpri (+ libpri_spans) to use new ftdm_configure_span_signali...
Stefan Knoblich [Sun, 7 Nov 2010 16:00:54 +0000 (17:00 +0100)] 
freetdm: convert ftmod_libpri (+ libpri_spans) to use new ftdm_configure_span_signaling() interface.

This fixes several issues with parameter handling (e.g. default alaw/ulaw selection being totally useless).

Signed-off-by: Stefan Knoblich <s.knoblich@axsentis.de>
15 years agoMerge branch 'master' of ssh://git.freeswitch.org/freeswitch
Stefan Knoblich [Sun, 7 Nov 2010 14:51:53 +0000 (15:51 +0100)] 
Merge branch 'master' of ssh://git.freeswitch.org/freeswitch

15 years agoftmod_libpri: Rework debug flag handling, make BRI/BRI PTMP default to alaw too ...
Stefan Knoblich [Sun, 7 Nov 2010 14:48:39 +0000 (15:48 +0100)] 
ftmod_libpri: Rework debug flag handling, make BRI/BRI PTMP default to alaw too (does not work yet)

Signed-off-by: Stefan Knoblich <s.knoblich@axsentis.de>
15 years agofreetdm: add debugging msgs for zt wait errors
Moises Silva [Sat, 6 Nov 2010 21:14:31 +0000 (17:14 -0400)] 
freetdm: add debugging msgs for zt wait errors

15 years agowindows fix for last openssl commit
Jeff Lenk [Sat, 6 Nov 2010 18:22:20 +0000 (13:22 -0500)] 
windows fix for last openssl commit

15 years agoMerge branch 'master' of ssh://git.freeswitch.org/freeswitch
Stefan Knoblich [Sat, 6 Nov 2010 17:28:53 +0000 (18:28 +0100)] 
Merge branch 'master' of ssh://git.freeswitch.org/freeswitch

15 years agoftmod_libpri: Fix reversed PTP/PTMP mode parameter
Stefan Knoblich [Sat, 6 Nov 2010 17:28:37 +0000 (18:28 +0100)] 
ftmod_libpri: Fix reversed PTP/PTMP mode parameter

15 years agowindows openssl fix spaces is build path
Jeff Lenk [Sat, 6 Nov 2010 17:24:30 +0000 (12:24 -0500)] 
windows openssl fix spaces is build path

15 years agoftmod_libpri: BRI Support requires libpri-1.4.12_beta1 or newer, add message to confi...
Stefan Knoblich [Sat, 6 Nov 2010 17:12:27 +0000 (18:12 +0100)] 
ftmod_libpri: BRI Support requires libpri-1.4.12_beta1 or newer, add message to configure check

15 years agoftmod_libpri: temporary segfault fix if libpri does not have BRI support
Stefan Knoblich [Sat, 6 Nov 2010 16:58:41 +0000 (17:58 +0100)] 
ftmod_libpri: temporary segfault fix if libpri does not have BRI support

15 years agoftmod_libpri: Initial support for BRI and various cleanups + double locking fix
Stefan Knoblich [Sat, 6 Nov 2010 15:08:07 +0000 (16:08 +0100)] 
ftmod_libpri: Initial support for BRI and various cleanups + double locking fix

Fixes:
- Fix double locking in check_state(): remove ftdm_mutex_(un)lock calls.

New:
- Add lpwrap_init_bri() to initialize libpri in BRI mode
- Use trunk type to determine PRI/BRI and PTP/PTMP mode (no additional configuration required).
- Improve libpri detection code in configure.ac, check whether libpri is usable
  and if BRI support is available (needs more work)

Cleanups:
- Whitespace and indentation cleanups
- Rename str2* functions to parse_*
- Simplify libpri_configure_span() option parsing and bail out on error
- Add "ftdm libpri help" command that displays usage information
- Coding style cleanups and other (minor) changes

Known issues:
- BRI PTMP TE Q.921 link does not go beyond TEI ASSIGNED state,
  SABME requests are ignored by NT (EuroISDN DTAG, DAHDI-2.3.0.1, vzaphfc)

Signed-off-by: Stefan Knoblich <s.knoblich@axsentis.de>
15 years agoFreeTDM: Update .gitignore, add files shipped with libtool (build/{libtool,lt*}.m4...
Stefan Knoblich [Sat, 6 Nov 2010 15:06:42 +0000 (16:06 +0100)] 
FreeTDM: Update .gitignore, add files shipped with libtool (build/{libtool,lt*}.m4) and compiled test binaries

15 years agoMerge branch 'master' of git.sangoma.com:smg_freeswitch
Arnaldo Pereira [Sat, 6 Nov 2010 14:50:22 +0000 (12:50 -0200)] 
Merge branch 'master' of git.sangoma.com:smg_freeswitch

15 years agofreetdm: fixed ftmod_r2 on windows and removed the wrong ftmod_r2 project from freetd...
Arnaldo Pereira [Sat, 6 Nov 2010 14:48:22 +0000 (12:48 -0200)] 
freetdm: fixed ftmod_r2 on windows and removed the wrong ftmod_r2 project from freetdm msvc file

15 years agoVS2010 Swig
Jeff Lenk [Sat, 6 Nov 2010 02:15:03 +0000 (21:15 -0500)] 
VS2010 Swig

15 years agofix missing name and potential segfault in gateway status
Michael Jerris [Sat, 6 Nov 2010 00:24:31 +0000 (20:24 -0400)] 
fix missing name and potential segfault in gateway status

15 years agoallow process_import to specify a prefix
Anthony Minessale [Fri, 5 Nov 2010 23:20:09 +0000 (18:20 -0500)] 
allow process_import to specify a prefix

15 years agorefactor
Anthony Minessale [Fri, 5 Nov 2010 20:24:11 +0000 (15:24 -0500)] 
refactor

15 years agoMerge branch 'master' into smgmaster
Konrad Hammel [Fri, 5 Nov 2010 19:04:17 +0000 (15:04 -0400)] 
Merge branch 'master' into smgmaster

15 years agofreetdm: ss7 - added support for hex characters in calling/called numbers
Konrad Hammel [Fri, 5 Nov 2010 17:52:41 +0000 (13:52 -0400)] 
freetdm: ss7 - added support for hex characters in calling/called numbers
freetdm: ss7 - added support for no-EC present indicatiation in ACM when 64k unrestricted TMR

15 years agotweak
Anthony Minessale [Fri, 5 Nov 2010 17:26:30 +0000 (12:26 -0500)] 
tweak

15 years agowindows installer fix to last commit
Jeff Lenk [Fri, 5 Nov 2010 15:36:13 +0000 (10:36 -0500)] 
windows installer fix to last commit

15 years agowindows wix installer - add more options for fs_cli
Jeff Lenk [Fri, 5 Nov 2010 15:12:25 +0000 (10:12 -0500)] 
windows wix installer - add more options for fs_cli

15 years agoadd fs_cli to windows wix install
Jeff Lenk [Thu, 4 Nov 2010 22:59:53 +0000 (17:59 -0500)] 
add fs_cli to windows wix install

15 years agofreetdm: added missing EX_DECLARE_DATA
Arnaldo Pereira [Thu, 4 Nov 2010 21:15:39 +0000 (19:15 -0200)] 
freetdm: added missing EX_DECLARE_DATA

15 years agofail calls with uninitialized frame
Anthony Minessale [Thu, 4 Nov 2010 20:40:00 +0000 (15:40 -0500)] 
fail calls with uninitialized frame

15 years agofire DTMF event when converting dtmf to inband with start_dtmf_generate
Anthony Minessale [Thu, 4 Nov 2010 20:30:02 +0000 (15:30 -0500)] 
fire DTMF event when converting dtmf to inband with start_dtmf_generate

15 years agofreetdm: made ftmod_r2 windows compatible and created ftmod_r2.2008.vcproj
Arnaldo M Pereira [Thu, 4 Nov 2010 20:26:05 +0000 (18:26 -0200)] 
freetdm: made ftmod_r2 windows compatible and created ftmod_r2.2008.vcproj

15 years agotypo
Anthony Minessale [Thu, 4 Nov 2010 19:38:43 +0000 (14:38 -0500)] 
typo

15 years ago- flash-to-digits: Defines the digits to be sent when the FLASH is detected on FXS
Geovani Ricardo Wiedenhoft [Thu, 4 Nov 2010 12:04:19 +0000 (10:04 -0200)] 
- flash-to-digits: Defines the digits to be sent when the FLASH is detected on FXS
channels;
- Updated documentation.

15 years agoset minimum initital sip t1 timer to 1000ms to work around race condition on retry...
Michael Jerris [Wed, 3 Nov 2010 17:57:59 +0000 (13:57 -0400)] 
set minimum initital sip t1 timer to 1000ms to work around race condition on retry timer firing before all the things that are supposed to be handled by the timer are set.  The base resolution on this timer is 500ms, so doubling up makes sure we always hit the initial retry timer on the next run, where everything should be set.  The side effect was, 1/2 the time on a request that did not get immediate response, the timer would be fired and cleared, but the action (sending retry) was never done, and a new timer was not set, causing the request to just sit zombied and never retry.  A better solution would be to find and correct the race condition so the timer is never set to early and we never hit this condition.

15 years agofix display of timeout
Anthony Minessale [Wed, 3 Nov 2010 17:22:01 +0000 (12:22 -0500)] 
fix display of timeout

15 years agoadd separate reg timeout from retry sec
Anthony Minessale [Wed, 3 Nov 2010 15:58:32 +0000 (10:58 -0500)] 
add separate reg timeout from retry sec

15 years agoadd support for NDLB-force-rport=safe param that does force-rport behavior only on...
Michael Jerris [Wed, 3 Nov 2010 15:53:39 +0000 (11:53 -0400)] 
add support for NDLB-force-rport=safe param that does force-rport behavior only on endpoints we know are safe to do so on.  This is a dirty hack to try to work with certain endpoints behind sonicwall which does not use the same port when it does nat, when the devices do not support rport, while not breaking devices that acutally use different ports that force-rport will break

15 years agoskypopen: performance improvements in skypopen_protocol.c and alsa/dummy.c . Added...
Giovanni Maruzzelli [Wed, 3 Nov 2010 03:52:09 +0000 (22:52 -0500)] 
skypopen: performance improvements in skypopen_protocol.c and alsa/dummy.c . Added pcm*c to alsa/. Let's hope the larger period in dummy.c does not make problems on ubuntu

15 years agofix registration overlap timeout snafu
Anthony Minessale [Tue, 2 Nov 2010 22:58:24 +0000 (17:58 -0500)] 
fix registration overlap timeout snafu

15 years agosame as last one in another place
Anthony Minessale [Tue, 2 Nov 2010 16:50:04 +0000 (11:50 -0500)] 
same as last one in another place

15 years agofreetdm: added missing sleep to ftmod_r2, which is now running fine
Arnaldo Pereira [Tue, 2 Nov 2010 15:40:27 +0000 (13:40 -0200)] 
freetdm: added missing sleep to ftmod_r2, which is now running fine

15 years agoskypopen: callflow display reshuffle
Giovanni Maruzzelli [Tue, 2 Nov 2010 07:19:18 +0000 (02:19 -0500)] 
skypopen: callflow display reshuffle

15 years agoMerge branch 'master' into ftmod_r2
Arnaldo Pereira [Tue, 2 Nov 2010 01:11:42 +0000 (23:11 -0200)] 
Merge branch 'master' into ftmod_r2

15 years agofreetdm: ftmod_r2 non threaded working
Arnaldo Pereira [Tue, 2 Nov 2010 01:08:43 +0000 (23:08 -0200)] 
freetdm: ftmod_r2 non threaded working

15 years agoskypopen: very nice formatted debug output (ok, I go get a life)
Giovanni Maruzzelli [Tue, 2 Nov 2010 00:11:43 +0000 (19:11 -0500)] 
skypopen: very nice formatted debug output (ok, I go get a life)

15 years agoparse static route in sip uri in notify by event
Anthony Minessale [Mon, 1 Nov 2010 23:46:59 +0000 (18:46 -0500)] 
parse static route in sip uri in notify by event

15 years agodisable status bar in .screenrc
Anthony Minessale [Mon, 1 Nov 2010 23:46:26 +0000 (18:46 -0500)] 
disable status bar in .screenrc