Commit Graph

17095 Commits

Author SHA1 Message Date
Jeff Lenk 145d64b623 windows wix installer - add more options for fs_cli 2010-11-05 10:12:25 -05:00
Jeff Lenk 7217b9dc7c add fs_cli to windows wix install 2010-11-04 17:59:53 -05:00
Arnaldo Pereira 5a8695d942 freetdm: added missing EX_DECLARE_DATA 2010-11-04 19:15:39 -02:00
Anthony Minessale 7dafe4e2c7 fail calls with uninitialized frame 2010-11-04 15:40:00 -05:00
Anthony Minessale dcdd381195 fire DTMF event when converting dtmf to inband with start_dtmf_generate 2010-11-04 15:30:02 -05:00
Arnaldo M Pereira 2e3163e2bf freetdm: made ftmod_r2 windows compatible and created ftmod_r2.2008.vcproj 2010-11-04 18:26:05 -02:00
Anthony Minessale d205755ae0 typo 2010-11-04 14:38:43 -05:00
Geovani Ricardo Wiedenhoft 56f58c2983 - flash-to-digits: Defines the digits to be sent when the FLASH is detected on FXS
channels;
- Updated documentation.
2010-11-04 10:04:19 -02:00
Michael Jerris 20c2740c64 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. 2010-11-03 13:58:12 -04:00
Anthony Minessale 2043d5a671 fix display of timeout 2010-11-03 12:22:01 -05:00
Anthony Minessale e5b891eed1 add separate reg timeout from retry sec 2010-11-03 10:58:32 -05:00
Michael Jerris fc4d290cb7 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 2010-11-03 11:53:39 -04:00
Giovanni Maruzzelli 4706d3946d 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 2010-11-02 22:52:51 -05:00
Anthony Minessale df52cc0952 fix registration overlap timeout snafu 2010-11-02 17:58:24 -05:00
Anthony Minessale 97d80d924a same as last one in another place 2010-11-02 11:50:04 -05:00
Arnaldo Pereira 2a1efb288f freetdm: added missing sleep to ftmod_r2, which is now running fine 2010-11-02 13:40:27 -02:00
Giovanni Maruzzelli f3ae4d10d7 skypopen: callflow display reshuffle 2010-11-02 02:19:18 -05:00
Arnaldo Pereira 039e4297ac Merge branch 'master' into ftmod_r2 2010-11-01 23:11:42 -02:00
Arnaldo Pereira dcb416e4fb freetdm: ftmod_r2 non threaded working 2010-11-01 23:08:43 -02:00
Giovanni Maruzzelli 04f9b8c6f4 skypopen: very nice formatted debug output (ok, I go get a life) 2010-11-01 19:12:03 -05:00
Anthony Minessale 35676e7e04 parse static route in sip uri in notify by event 2010-11-01 18:47:09 -05:00
Anthony Minessale 78f05aef77 disable status bar in .screenrc 2010-11-01 18:47:09 -05:00
Giovanni Maruzzelli cda952083f skypopen: nice formatted debug output (I feel so stupid when I use one full hour for things like this, but I like it ;) ) 2010-11-01 18:48:28 -05:00
Giovanni Maruzzelli 5f91e46914 skypopen: modifying Makefile.am and skypopen.h to report in revision tag of debug lines the last commit of both mod_skypopen.c and skypopen_protocol.c (so you can have your own commits in the same dir) 2010-11-01 16:41:23 -05:00
Giovanni Maruzzelli faa1636905 skypopen: modifying Makefile.am to report on last commit in skypopen directory 2010-11-01 16:14:16 -05:00
Stefan Knoblich 454c238e58 Merge branch 'master' of ssh://git.freeswitch.org/freeswitch 2010-11-01 20:39:47 +01:00
Anthony Minessale 7ac78ac21a FS-2811 2010-11-01 10:25:47 -05:00
Anthony Minessale 1970ec1d81 FS-2810 2010-11-01 10:03:10 -05:00
Stefan Knoblich cc1e83397b FreeTDM: Buildsystem cleanup
- Use tabs instead of spaces for indentation

- Proper m4 quoting of parameters

- Fix broken AC_ARG_* handling:
  --without-foo/--disable-foo set withval="no"/enableval="no"
  and the third parameter of the AC_ARG_* macros is always
  "user provided an --with*-foo/--*able-foo option" _NOT_ "yes",
  while the fourth parameter is "user didn't provide this option"
  (= the default if neither --with-foo/--enable-foo nor --without-foo/--disable-foo
     has been set)

- Drop FTDM_CFLAGS in MY_CFLAGS (what was that used for anyway?)

- Drop MYLIB

- Drop SOLINK (unused)

- Rename MY_CFLAGS to FTDM_CFLAGS

- Rename all AM_CONDITION variables to HAVE_* for (optional) dependencies
  and WANT_* for features

- Reorder mod_LTLIBRARIES lines

- Move some things in configure.ac around to group them

- Add -shared to modules LDFLAGS (we don't need "ftmod_foo.a" static modules, do we?)

- Import ax_compiler_vendor.m4, drop the macro definition from configure.ac

- Add AUTOMAKE_OPTS to Makefile.am and define FreeTDM as a foreign (= non-GNU) project

- Add ACLOCAL_FLAGS to Makefile.am and set AC_CONFIG_MACRO_DIR in configure.ac
  custom m4 macros are kept in the build subdirectory

- Enable silent rules for automake-1.11 and newer (use make V=1 to get verbose output)

- configure option --with-modinstdir requires a value now and quits with an error message
  if called without one (e.g. "./configure --without-modinstdir" or "./configure --with-modinstdir")

- Add configuration summary screen and category headers for modules in configure output
2010-11-01 02:13:27 +01:00
Stefan Knoblich 3428bd3d43 ftmod_isdn: FreeTDM port, first steps
- Requires non-public development version of libisdn(!)
- Based on older patches from http://oss.axsentis.de/gitweb/?p=ftmod_isdn.git;a=summary
- Rework of ftmod_isdn related buildsystem parts (Makefile.am, configure.in and libpcap.m4)
2010-11-01 00:47:43 +01:00
cypromis 1d2b5e304c FS-2808, thx Diego Viola 2010-10-31 23:22:53 +01:00
Jeff Lenk 1b0ec75568 fix stuck channel with voicemail and loopback 2010-10-30 22:29:26 -05:00
Moises Silva 3e33540a81 mod_sangoma_codec: add G723.1 2010-10-29 23:01:49 -04:00
Marc Olivier Chouinard 81a038690a mod_callcenter: Make callcenter_config agent get return the value of the item requested. Also added queue param max-wait-time-with-no-agent-time-reached: If the max-wai-time-with-no-agent is already reached for the queue, then new caller can wait for x ammount of second before it kicked out of the queue rather than get rejected automaticly. 2010-10-29 22:41:14 -04:00
Moises Silva e86af7d730 mod_sangoma_codec: only register one codec interface for iLBC 2010-10-29 21:55:01 -04:00
Anthony Minessale 402e383bd7 fix fifo race in use count dec 2010-10-29 20:39:07 -05:00
Moises Silva 68abb39eb3 mod_sangoma_codec: add iLBC 13.3k and 15.2k 2010-10-29 21:05:19 -04:00
Konrad Hammel 90781424bf freetdm: ss7 - added support for reserved national and spare SSF values 2010-10-29 20:17:26 -04:00
Moises Silva 1d5aa062ee mod_sangoma_codec: default to G729 only and remove L16 since it did not make any sense 2010-10-29 17:29:57 -04:00
Anthony Minessale 3b92f04b85 allow PLC flag to make it to the codec 2010-10-29 14:58:38 -05:00
Anthony Minessale e2a565412a allow PLC flag to make it to the codec 2010-10-29 14:58:38 -05:00
Jeff Lenk b4562522ed windows - fix build 2010-10-29 13:51:02 -05:00
Moises Silva d2e255192a mod_sangoma_codec: use native L16 for the source codec 2010-10-29 14:31:55 -04:00
Anthony Minessale d40bb06400 part2 2010-10-29 13:00:14 -05:00
Anthony Minessale 23d5fc1900 add -ncwait for Unix based implememtations to make the backgrounder wait to make sure the process starts before detaching 2010-10-29 12:43:55 -05:00
Giovanni Maruzzelli 3c66b497d6 skypopen: fix FS-2784, missing incoming calls to one interfacename 2010-10-29 01:58:31 -05:00
Jeff Lenk e866e7a136 windows - fix build - change based on other changes in file 2010-10-28 21:37:12 -05:00
Anthony Minessale 5d647d2c42 omfg really 2010-10-28 19:34:20 -05:00
Konrad Hammel 6f2ccbae21 freetdm: ss7 - update to support CCR 2010-10-28 17:23:12 -04:00
Anthony Minessale 6737ae52d9 FS-2801 2010-10-28 15:34:56 -05:00