Commit Graph

1642 Commits

Author SHA1 Message Date
Moises Silva 358a3192c5 freetdm: remove unused core flag macros 2010-12-22 15:26:10 -05:00
Moises Silva 525b0978ca freetdm: ftmod_r2 - use openr2 API extension to properly report incoming restricted ANI and restrict ANI on outgoing calls 2010-12-22 15:07:32 -05:00
Arnaldo Pereira 0ab67997f9 freetdm: ftmod_r2 - refactored ftdm_span_next_event(), ftdm_channel_read_event() and created ftdm_event_handle_oob(),
which handle oob events and notify the user by sending the proper SIGEVENT message
2010-12-22 17:35:55 -02:00
Arnaldo Pereira a3ea8a8f20 freetdm: ftmod_zt - clear FTDM_CHANNEL_EVENT flag on zt_channel_next_event when set,
but retrieve event from channel even when it's not
2010-12-21 22:13:16 -02:00
Moises Silva 54359f1b78 freetdm: fix call id generation 2010-12-21 19:04:41 -05:00
Moises Silva 665b12b1f5 Merge remote branch 'fsorig/master' 2010-12-21 15:23:23 -05:00
Moises Silva ebb6133529 Merge branch 'master' of git.sangoma.com:smg_freeswitch 2010-12-21 15:16:09 -05:00
Moises Silva cdfa8bf7ae freetdm: Added new OOB event FTDM_OOB_POLARITY_REVERSE
Added new channel command FTDM_COMMAND_SET_POLARITY
         ftmod_wanpipe - Added support to enqueue polarity events on FXO lines
	 ftmod_wanpipe - Added support to set polarity on FXS lines
	 ftmod_analog - Added support to answer and hangup FXO lines on polarity reverse
	 ftmod_analog - Added support to reverse polarity in the FXS line on answer and hangup
	 mod_freetdm - Added parameters answer-on-polarity, hangup-on-polarity and polarity-delay
                       to enable those analog features
2010-12-21 15:11:22 -05:00
Arnaldo Pereira 723a598c24 freetdm: core - lock the channel on ftdm_channel_read_event()
ftmod_zt - not locking the channel on zt_channel_next_event(), minor changes
2010-12-21 16:32:02 -02:00
Arnaldo Pereira 7732a67598 Merge branch 'master' into arnaldo.zt_chan_next_event 2010-12-21 14:16:45 -02:00
Arnaldo Pereira f5c36acfe2 freetdm: mod_freetdm - updated api commands help
ftmod_r2 - updated api help and removed references to threads per channel,
                    not used anymore
2010-12-21 13:31:21 -02:00
Moises Silva e085fea23e freetdm: define _GNU_SOURCE to get gethostbyname_r 2010-12-21 09:09:10 -05:00
Moises Silva 1d7a1bd131 freetdm: use ULL for flags 2010-12-21 08:57:11 -05:00
David Yat Sin 4f9bbdc41b Fixed for some compile errors 2010-12-20 17:19:01 -05:00
David Yat Sin 4551ae51c3 Merge branch 'netborder' of git.sangoma.com:smg_freeswitch into netborder 2010-12-20 17:11:32 -05:00
David Yat Sin c2d7957142 Merge branch 'master' into netborder
Conflicts:
	libs/freetdm/src/ftmod/ftmod_sangoma_isdn/ftmod_sangoma_isdn_trace.c
2010-12-20 17:08:15 -05:00
David Yat Sin 4144d518c6 Freetdm: Support for mapped raw traces 2010-12-20 17:06:36 -05:00
Moises Silva 092d22a214 freetdm: fix get caller id command 2010-12-20 16:57:01 -05:00
Moises Silva 38968d15fe freetdm: fake signaling status notifications in ftmod_analog 2010-12-20 16:15:41 -05:00
Jeff Lenk 82ad5278b3 tweak vs2010 freetdm wanpipe 2010-12-20 14:55:18 -06:00
Moises Silva b5b2f6134d freetdm: multiple fixes for the core and analog
* Replace ftdm_channel_flag_t with defines. We reached the 32bit limit where does not seem reliable
          to keep using enum.
	* Flags member for ftdm_channel_t is now uint64_t
	* Added FTDM_CHANNEL_CALL_STARTED flag to indicate when the API user knows about a call
	* Refactored raw_data member for ftdm_sigmsg_t. If raw_data needs to be freed it must be requested explicitly
          through the autofree member
	* Added collected member to ftdm_sigmsg_t for FTDM_SIGEVENT_COLLECTED data instead of using raw_data
	* Created define FTDM_DIGITS_LIMIT for DNIS/ANI digits limit
	* Fix some stat checks and outdated code in ftmod_analog
	* Refactored ftdm_channel_get_history_str API to return the time offsets and time since last state change
	* Do not send FTDM_SIGEVENT_STOP and FTDM_SIGEVENT_RELEASED on calls that were never reported to the user
2010-12-20 14:06:54 -05:00
Jeff Lenk a1a710482b freetdm windows build tweaks 2010-12-20 12:15:41 -06:00
Moises Silva 11a7b1f9a0 Merge remote branch 'fsorig/master' 2010-12-20 10:12:48 -05:00
Stefan Knoblich b84b71defa FreeTDM: Stop using raw_data for FTDM_SIGEVENT_SIGSTATUS_CHANGED events.
The raw_data member is used for passing heap allocated data with an event,
(e.g. strings of dtmf data) the memory is freed after the event has been processed.

Recent changes in the event structure added a way to pass sig status changes inline,
so remove the raw_data usage for FTDM_SIGEVENT_SIGSTATUS_CHANGED events.

NOTE: This (finally) fixes a bug in ftmod_libpri that was caused by
      the event handling changes (stack corruption due to using free()
      on a variable on the stack, which turned into a NULL ptr deref
      caused by some compat code in ftdm_io.c:ftdm_span_send_signal().

Compiles and tested on my BRI setup, i did a quick audit of all
places that generate FTDM_SIGEVENT_SIGSTATUS_CHANGED events and
except for the sangoma_boost module there's nothing else that left
using raw_data for this event.

Signed-off-by: Stefan Knoblich <s.knoblich@axsentis.de>
2010-12-19 21:09:50 +01:00
Moises Silva dd4bad220c freetdm: ftmod_libpri - update to use proper structure member for signaling status change notifications 2010-12-19 12:55:55 -05:00
Moises Silva fcd6c54162 freetdm: fix attempt for OPENZAP-130 2010-12-19 00:13:08 -05:00
Moises Silva 87818abedd Merge remote branch 'fsorig/master' 2010-12-17 20:31:15 -05:00
Moises Silva 6fe762727a Merge branch 'master' of git.freeswitch.org:freeswitch 2010-12-17 20:28:32 -05:00
Moises Silva 2b0bba8e94 freetdm: add __USE_BSD to ftdm_os, needed by unistd.h for usleep() and string.h to define strcasecmp()
add -Werror even when the compiler is unknown. This is just a work-around to gcc not being detected
	 as GNU by our current standalone build (not bootstrapped through FreeSWITCH)
2010-12-17 20:27:37 -05:00
Stefan Knoblich 6066993d21 ftmod_libpri: remove ftdm_channel_done(), only use ftdm_channel_close().
Signed-off-by: Stefan Knoblich <s.knoblich@axsentis.de>
2010-12-18 02:24:28 +01:00
Moises Silva aa69927b8f freetdm: OPENZAP-124 - Add round robin hunting direction (Patched by Ric) 2010-12-17 20:04:30 -05:00
Moises Silva a1a50c87ec freetdm: OPENZAP-123 - Restrict ANI presentation in ftmod_r2 (Patched by ric) 2010-12-17 19:33:43 -05:00
Moises Silva d349290f7b freetdm: fix OPENZAP-125 (Add basic calling party category support into ftmod_r2) (Patched by ric) 2010-12-17 19:26:43 -05:00
Arnaldo Pereira 9fd1c71b4b Merge branch 'arnaldo.sigstatus' 2010-12-17 20:18:11 -02:00
Arnaldo Pereira 6b52208957 freetdm: core - moved validation of sigstatus from implementation to core, on sigstatus getters/setters
core - locking the channel on ftdm_channel_get_sig_status() and ftdm_channel_set_sig_status(),
                but not on ftdm_span_get_sig_status() nor ftdm_span_set_sig_status()
         ftmod_r2 - locking channels on ftdm_r2_get_span_sig_status() and ftdm_r2_set_span_sig_status()
2010-12-17 18:28:57 -02:00
Moises Silva 764b990849 Merge remote branch 'fsorig/master' 2010-12-17 13:03:15 -05:00
Moises Silva 27ea959b4b freetdm: add __USE_BSD to ftdm_os, needed by unistd.h for usleep() and string.h to define strcasecmp()
add -Werror even when the compiler is unknown. This is just a work-around to gcc not being detected
         ad GNU by our current standalone build (not bootstrapped through FreeSWITCH)
2010-12-17 12:57:12 -05:00
Arnaldo Pereira d3a24be0ba freetdm: ftmod_r2 - updated ftdm_r2_set_channel_sig_status() to notify the user of signaling changes
just when specified on docs/sigstatus.txt.
					also updated ftdm_r2_set_span_sig_status(), so that it uses the former to set channels
                    status, instead of doing it directly.
2010-12-17 15:50:11 -02:00
Moises Silva c2262aba2b freetdm: Fix for OPENZAP-128
ioctl interface in FreeBSD expects unsigned long
2010-12-17 09:52:26 -05:00
Arnaldo Pereira 0f91359f3a Merge branch 'master' into netborder 2010-12-16 21:33:22 -02:00
Moises Silva 11642cce3c Merge branch 'master' of git.sangoma.com:smg_freeswitch 2010-12-16 18:30:25 -05:00
Moises Silva 0f937ca134 freetdm: Add documentation on sig status 2010-12-16 18:29:45 -05:00
Moises Silva 6e24e8e67b Merge remote branch 'smgfs/master' 2010-12-16 16:50:19 -05:00
Arnaldo Pereira a134136ee7 freetdm: ftmod_r2 - notify the core when we change the signaling status of a channel or span through the api 2010-12-16 19:44:32 -02:00
David Yat Sin 6014178b5b Removed unwanted lines in previous commit 2010-12-16 16:32:04 -05:00
David Yat Sin d6ec16804a freetdm: added trace type to raw traces 2010-12-16 15:59:13 -05:00
David Yat Sin 48a1ae3896 freetdm: added trace type to raw traces 2010-12-16 15:57:46 -05:00
Arnaldo Pereira 43dd86fb96 freetdm: ftmod_r2 - small code clean 2010-12-16 18:47:40 -02:00
Arnaldo Pereira 6b66a0516b freetdm: ftmod_r2 - fixed infinite loop on span stop 2010-12-16 18:19:50 -02:00
Arnaldo Pereira 37753892f1 Merge branch 'master' of git@git.sangoma.com:smg_freeswitch 2010-12-16 17:01:37 -02:00
Arnaldo Pereira a082c9e913 freetdm: ftmod_r2 - implemented ftdm_r2_get_span_sig_status() and ftdm_r2_set_span_sig_status()
mod_freetdm - created sigstatus api command
2010-12-16 17:01:06 -02:00
Anthony Minessale 43393f26d1 normalize tests for outbound channels to use switch_channel_direction instead of testing for CF_OUTBOUND 2010-12-15 20:59:42 -06:00
David Yat Sin 47c9773048 Merge branch 'master' into netborder
Conflicts:
	libs/freetdm/src/ftmod/ftmod_sangoma_isdn/ftmod_sangoma_isdn_stack_hndl.c
2010-12-15 16:47:37 -05:00
David Yat Sin ccbc2ed93c Merge branch 'davidy.mapped_raw_traces' 2010-12-15 16:45:15 -05:00
David Yat Sin c602e04ff6 Merge branch 'davidy.channel_restart' 2010-12-15 16:43:33 -05:00
David Yat Sin 53346e4948 Freetdm: exposed channel availability rate to user 2010-12-15 16:42:47 -05:00
David Yat Sin a24b9c9f68 freetdm: Support for RAW traces 2010-12-15 16:29:44 -05:00
David Yat Sin dd345b913b freetdm: Support for RAW traces 2010-12-15 16:29:03 -05:00
Arnaldo Pereira 72f99898d2 freetdm: ftmod_r2 - updated warning message 2010-12-15 18:48:49 -02:00
Arnaldo Pereira bb8d901c4f freetdm: ftmod_wanpipe - replaced some POLL macros by SANG_WAIT_OBJ_* 2010-12-15 18:32:35 -02:00
Arnaldo Pereira 20ba5da479 freetdm: ftmod_r2 - implemented set_channel_sig_status() 2010-12-15 18:08:55 -02:00
Arnaldo Pereira dcdbeff9d8 freetdm: ftmod_wanpipe - now receiving ftdm macros for channel polling, instead of using POLLPRI, etc., directly
ftmod_r2 - also using ftdm macros for polling
2010-12-15 17:43:40 -02:00
David Yat Sin 0235f0ba0e Merge branch 'master' into davidy.channel_restart 2010-12-15 12:58:38 -05:00
David Yat Sin ea2b477444 Freetdm:fix for ftdm_channel_close not always passed double-pointer 2010-12-15 12:56:49 -05:00
David Yat Sin 102640ad7b freetdm: support for SIGEVENT_RING 2010-12-15 11:45:50 -05:00
Moises Silva 8bb15b270c Merge branch 'master' into netborder 2010-12-15 11:20:29 -05:00
Moises Silva 3085523f56 freetdm: define special size formatting that actually works on Linux and Windows 2010-12-15 09:56:27 -05:00
Moises Silva 1c01144c20 freetdm: open all media dumps as binary. Fixes Windows corrupted cores. 2010-12-14 16:55:40 -05:00
Moises Silva c6417fa2b3 freetdm: ftmod_r2 - disable MF dump for forward calls on call accepted 2010-12-14 16:50:10 -05:00
David Yat Sin 56515c3a64 Minor change to allow skip states 2010-12-14 16:04:25 -05:00
David Yat Sin 905fdcc248 freetdm: Support for channel restarts 2010-12-14 11:23:47 -05:00
Moises Silva a2faee2023 freetdm: ftdm_r2 - fix stats 2010-12-13 16:27:51 -05:00
David Yat Sin 6d21b59fee Merge branch 'master' into netborder
Conflicts:
	libs/freetdm/src/testsangomaboost.c
2010-12-13 12:00:59 -05:00
David Yat Sin ce25c9186f Merge branch 'davidy.caller_id' 2010-12-13 11:51:49 -05:00
David Yat Sin f87a32c66a removed unnecessary initialization 2010-12-13 11:29:38 -05:00
Moises Silva 19c0026581 Merge remote branch 'fsorig/master' 2010-12-12 19:32:36 -05:00
Jeff Lenk 349e9d5913 fix accidental removal 2010-12-10 23:07:15 -06:00
David Yat Sin 55203ed0d7 Support for call ID 2010-12-10 19:14:08 -05:00
Konrad Hammel ff07022c26 Merge branch 'master' of git.sangoma.com:smg_freeswitch 2010-12-10 16:55:32 -05:00
Arnaldo Pereira 1347983883 freetdm: ftmod_r2 - handle FTDM_CHANNEL_STATE_RINGING, just printing a debug message 2010-12-10 19:31:11 -02:00
Konrad Hammel 6fdba3452a freetdm: ss7 - added suport for per isup interface min_digits
ss7 - fixed strcpy bugs and compile warnings
2010-12-10 16:03:49 -05:00
Arnaldo Pereira 666e9fc2c6 freetdm: ftmod_r2 - reject collect calls when allow_collect_calls isn't true 2010-12-10 18:48:04 -02:00
David Yat Sin fb9a1b05ac Merge branch 'smgfs' 2010-12-10 15:22:14 -05:00
Mathieu Rene c5e2fc1571 fix configure --srcdir for freetdm 2010-12-10 14:56:29 -05:00
Moises Silva e96d8f1630 freetdm: fix windows warning in ftmod_r2 2010-12-10 13:42:47 -05:00
Moises Silva e9dc863e21 Merge branch 'master' into netborder
Conflicts:
	libs/freetdm/src/ftmod/ftmod_sangoma_isdn/ftmod_sangoma_isdn_support.c
	libs/freetdm/src/testsangomaboost.c
2010-12-10 08:48:43 -05:00
Moises Silva 8c057921f3 ftmod_wanpipe - fix idle frame stats 2010-12-10 08:32:36 -05:00
Moises Silva ff455e63f2 Merge branch 'master' of git.sangoma.com:smg_freeswitch 2010-12-10 06:52:48 -05:00
Moises Silva 002181e143 freetdm: fix serious mem leak in R2 module iterator usage 2010-12-10 06:52:04 -05:00
David Yat Sin 86c484c134 freetdm: added support for skip states, used by sangoma_isdn module 2010-12-09 18:01:31 -05:00
David Yat Sin fced79a493 fix not handling disconnect when in RINGING state 2010-12-09 17:15:07 -05:00
David Yat Sin 1a730cb715 fix not handling disconnect when in RINGING state 2010-12-09 17:13:34 -05:00
David Yat Sin 6e24f55859 Minor fixes 2010-12-09 16:09:00 -05:00
Arnaldo Pereira 38ca557ad9 freetdm: ftmod_r2 - fixed complation warnings on windows 2010-12-09 15:21:10 -05:00
Jeff Lenk 8016813234 freetdm VS2010 build fix 2010-12-09 14:03:09 -06:00
David Yat Sin 7b371be267 Fix for compilation issue 2010-12-09 14:08:31 -05:00
David Yat Sin d3ddd29e8b freetdm: fix compilation 2010-12-09 14:05:35 -05:00
David Yat Sin 502116e4a0 freetdm: support for call variables 2010-12-09 14:05:07 -05:00
David Yat Sin 5ab19aaa23 freetdm: fix compilation 2010-12-09 13:47:40 -05:00
David Yat Sin 3c747978f4 freetdm: support for call variables 2010-12-09 13:20:05 -05:00