Commit Graph

14944 Commits

Author SHA1 Message Date
Chris Rienzo f5f65b65a9 mod_http_cache: remove unnecessary memset() now that switch_b64_encode() is fixed 2013-05-22 08:22:04 -04:00
Chris Rienzo 8be02b57ce mod_http_cache: fix unit test now that switch_b64_encode is fixed 2013-05-22 08:19:36 -04:00
Anthony Minessale 1a3b69a4a6 FS-5436 --resolve 2013-05-21 19:39:02 -05:00
Anthony Minessale 78c31eaa87 FS-5402 revert wait till tomorrow 2013-05-21 13:29:24 -05:00
Anthony Minessale 1239e32de2 FS-5402 2013-05-21 13:22:17 -05:00
Anthony Minessale 363b58dc54 FS-5453 --resolve 2013-05-21 12:01:57 -05:00
Anthony Minessale 7ec78e90e1 FS-5457 2013-05-21 10:21:45 -05:00
Anthony Minessale 104febbc1a FS-5376 --resolve 2013-05-21 10:04:35 -05:00
Anthony Minessale 8ac3178e45 FS-5242 2013-05-21 10:03:22 -05:00
Anthony Minessale 0cee5ac9df FS-5211 --resolve 2013-05-21 09:29:50 -05:00
Chris Rienzo 83d7b60d74 mod_http_cache: forgot to add write to http_cache:// format 2013-05-21 09:27:39 -04:00
Travis Cross d2f3a3114e Spelling fix 2013-05-21 02:00:43 +00:00
Anthony Minessale 3e6cdd6b57 FS-5360 2013-05-20 12:22:58 -05:00
Anthony Minessale 6c5de69b18 getting read_impl too soon here 2013-05-20 11:22:37 -05:00
Anthony Minessale 9cdd2be095 FS-5444 --resolve 2013-05-20 08:20:38 -05:00
Chris Rienzo a0170bbdb2 mod_http_cache: added write file format 2013-05-20 11:18:40 -04:00
Chris Rienzo 8c8b2176d2 mod_http_cache: added native Amazon S3 support 2013-05-20 09:31:28 -04:00
Steve Underwood fe000f18fd Fixed a weakness in error UDPTL lost packet recovery. Hopefully this addresses
FS5202.
2013-05-20 11:30:11 +08:00
William King e2ea6e58c8 Minor code cleanup. calling va_start without calling va_end doesn't leak does it? Either way, it's fixed now. 2013-05-18 20:15:55 -07:00
William King 9ace496fe3 full_contact must be freed by sofia. There isn't a chance of this having blown anything up, but Coverity is right that this should be initialized with NULL to be safe against future refactors. 2013-05-18 19:13:18 -07:00
William King ef1bf8e34a Was causing a very small leak on naptr lookups. Upon review just happened to be a typo missing a bang. 2013-05-18 17:50:50 -07:00
William King 508fb78e94 My bad. some how a make didn't catch this issue after a cleanup refactor. In this instance buf is being treated as an 8 byte number, not a pointer. 2013-05-18 17:46:13 -07:00
William King 291244c099 Coverity reported an Uninitialized pointer read. Upon further digging it appears that there is a code path where incoming packets can come in out of order, so this section of code tries to see if it can find the missed packets. As per FS-5202 there is a case where under heavy load the packet exists, and has most of the packet parsed, but still has a NULL pointer for the packet buffer. These two lines would at least help detect the edge case. 2013-05-18 17:34:16 -07:00
William King 45803e38e7 Edge case for when you are subscribing to presence on a valet parking lot. In which case there would be a small leak. 2013-05-18 17:06:54 -07:00
William King d27a95a50e Possible leak if someone were to try and add extra headers to a channel that had either an inbound info on that session or the session were to be deflected. I don't see a way that these extra headers could be added outside of a C module subscribing to the session states, but just to make sure I'm adding these so that just like other extra header locations it's cleaned up. 2013-05-18 17:00:41 -07:00
William King f718a0572f Alice meet rabit hole. There is a leak here on every invite that comes back from a status 180 when the other side is not FS, but you have presence enabled. Thanks to Coverity scan for location this condition. This 'might' not have been leaking if sofia was automatically freeing this when the sofia object was destroyed, but all other locations where sip_header_as_string where called they were all followed by a su_free, so I assume not. 2013-05-18 16:35:03 -07:00
William King f519ad195a If the mod_sofia global presense hash is null, then make sure to free the matches variable before going to done. 2013-05-18 16:05:40 -07:00
William King 09553f424a FS-5443: --resolve leaked because the JS api's copy and return new malloc'd pointers. 2013-05-18 15:47:01 -07:00
William King 7f3f4855a6 When message events were added, the debug field name was overlooked. This would have only been hit when debug level was above 'DEBUG1' and at that point it would have incorrectly chosen debug display names. 2013-05-18 15:10:44 -07:00
William King 4fcefab0d0 Minor typo. User is being passed into this fuction as a long pointer, not a long. 2013-05-18 14:29:59 -07:00
William King 047dc67098 read() does not NULL terminate statbuf, but strstr expects statbuf to be null terminated. 2013-05-18 14:26:40 -07:00
William King 3f06bbd04a This was writing a null one space to the right, outside of the malloc'd buffer. On further review this uses apr_vsnprintf which always returns null terminated. 2013-05-18 13:38:24 -07:00
Jeff Lenk de0fea316e FS-5434 --resolve 2013-05-17 21:38:32 -05:00
Anthony Minessale 2bafe135c0 remove flag 2013-05-17 16:13:19 -05:00
Anthony Minessale e03b6d0878 fix silence_stream size bug 2013-05-17 16:11:04 -05:00
Anthony Minessale ea881b191f media/srtp refactoring pass 2013-05-17 15:39:30 -05:00
William King 8d7aa3ff65 FS-5441: --resolve 2013-05-17 12:39:17 -07:00
William King 58e205ccdb how...? 2013-05-17 11:36:31 -07:00
William King cfeb6aaf54 Since there isn't neutral ground, on the rtmp state callback we actually have to force the write lock of the session, but we only need a try lock on removing the session from the rsession->session_hash. This removes a deadlock caused when we had to enforce with locks that the rsession couldn't be destroyed if the FS session was in the middle of a hangup. 2013-05-17 11:36:30 -07:00
William King f24d1cde3d Seems the session wasn't coming to the hangup in a locked state. 2013-05-17 11:36:30 -07:00
William King 36f198e883 Seems having a read lock still prevents a write lock to be taken, even if the thread that is trying to get the write lock currently has the read lock. 2013-05-17 11:36:29 -07:00
William King 9b0212ab59 Include the write lock since we're changing the tech_pvt 2013-05-17 11:36:29 -07:00
Anthony Minessale 97faaab42c FS-5430 --resolve 2013-05-15 09:27:18 -05:00
Jeff Lenk a4f3629773 trivial fix compiler warning 2013-05-15 11:51:55 -05:00
Anthony Minessale d50366f377 FS-5418 --resolve 2013-05-15 08:08:41 -05:00
Anthony Minessale d5ad021720 FS-5208 --resolve 2013-05-15 07:36:56 -05:00
Anthony Minessale 644720454f fix some minor regression in media code 2013-05-14 12:55:02 -05:00
Anthony Minessale 101b116daf FS-5011 try to fill gaps 2013-05-14 11:22:53 -05:00
Steve Underwood 11f8491170 Fixed a silly in the FAX image resolution settings 2013-05-15 01:49:58 +08:00
Anthony Minessale 81788f1192 FS-5416 --resolve just missing the part that registers it 2013-05-14 07:38:00 -05:00
Anthony Minessale 0aaba4588a fix stun lookup returning 1 for port 2013-05-13 16:17:19 -05:00
Anthony Minessale 97d47af882 FS-5407 --resolve 2013-05-13 14:21:08 -05:00
Anthony Minessale 1eae2a1941 FS-5410 --resolve 2013-05-13 13:15:33 -05:00
Anthony Minessale fd86c038c9 FS-5406 --resolve 2013-05-12 08:06:31 -05:00
Raymond Chandler bba4540fe5 add context 2013-05-10 16:31:12 -04:00
Anthony Minessale cb7a6bd34b FS-5085 the last change helped weed out the real bug which is this commit 2013-05-10 10:45:28 -05:00
Anthony Minessale bb6b02f2d6 FS-5403 --resolve 2013-05-10 09:59:02 -05:00
Steve Underwood d501c77566 Relax the image resolutions supported for FAX 2013-05-10 21:44:17 +08:00
Anthony Minessale 30c27efb62 move log message to avoid logging null 2013-05-09 14:34:39 -05:00
Anthony Minessale 16690e491d FS-5399 --resolve 2013-05-09 14:05:09 -05:00
Anthony Minessale f00bd136ac FS-5360 --resolve fields are exec-on-max-failures exec-on-max-timeouts pin, needs testing 2013-05-09 12:28:43 -05:00
Anthony Minessale 66ba282233 FS-5390 --resolve 2013-05-09 10:29:45 -05:00
Anthony Minessale ba97929a1a FS-5398 --resolve 2013-05-09 10:08:14 -05:00
Giovanni Maruzzelli 0330520eba test 2, please ignore 2013-05-09 17:00:54 +00:00
root 0fe65187cd test, please ignore 2013-05-09 16:59:39 +00:00
William King 9fa4bed8e3 FS-5395: False alarm on a reported valgrind memory leak. The io_private is alloc'd from a memory pool which valgrind sucks at tracking. No need to free this, because it'll get cleared when the memory pool on the rsession is destroyed. 2013-05-08 18:45:24 -07:00
William King b3117e8f88 FS-5395: --resolve Resolve another mod_rtmp crash where oh specific hangup scenarios there would be a free of variable that wasn't ever malloced 2013-05-08 16:54:05 -07:00
Anthony Minessale 0a68bee88e FS-5085 I discovered that the bowout is happening from both legs at once, we only need to check this condition on the A side of the loopback bridge 2013-05-08 13:17:07 -05:00
Brian West 7c0dc4c25d Undo previous change 2013-05-08 14:40:10 -05:00
Raymond Chandler 58a127fe65 FS-5327 --resolve 2013-05-08 13:52:48 -04:00
Raymond Chandler ef1d9836a7 Merge branch 'master' of fs-git:freeswitch 2013-05-08 12:53:40 -04:00
Raymond Chandler e88126c95a FS-5288 --resolve 2013-05-08 12:53:31 -04:00
Anthony Minessale 9aaaeb7215 FS-5371 --resolve typo 2013-05-08 09:18:52 -05:00
Jeff Lenk 0bf912e821 FS-5389 2013-05-08 11:36:13 -05:00
Jeff Lenk ab7ae9f7cc FS-5389 --resolve 2013-05-08 08:37:10 -05:00
William King 0d5888de2f Revert "fixed stuck mod_rtmp session when the call is killed from fs side, such as using uuid_kill"
This reverts commit d8edc031fa.

Conflicts:
	src/mod/endpoints/mod_rtmp/mod_rtmp.c
2013-05-07 16:04:54 -07:00
Anthony Minessale d83c627228 FS-5168 --resolve 2013-05-07 14:09:47 -05:00
Raymond Chandler a2fcb4191e FS-4871 --resolve 2013-05-07 15:07:04 -04:00
Anthony Minessale 01a748869d regression parsing rtp-timeout-sec from the profile 2013-05-07 08:50:02 -05:00
Anthony Minessale ff05e5f2c7 FS-5383 --resolve 2013-05-07 08:31:23 -05:00
Ken Rice 7952f7c547 fix mod_spandsp on systems with libjbig 2013-05-06 18:23:54 -05:00
Michael Jerris bea4bb0950 fix auto in will not use the last slot 2013-05-06 11:46:38 -04:00
Anthony Minessale 832bbf4f03 FS-5371 --resolve 2013-05-03 13:38:17 -05:00
Anthony Minessale 283e5f5f6a FS-5365 --resolve 2013-05-03 13:14:01 -05:00
Michael Jerris 2f767ec9f0 add bgsystem for background system calls 2013-05-03 16:22:34 -04:00
Anthony Minessale adb68d6bca FS-5085 adding this patch but still wondering what causes this issue 2013-05-03 12:30:35 -05:00
Anthony Minessale 21c5db871b dress up event fired after parsing a message 2013-05-03 11:42:36 -05:00
Anthony Minessale e95bbd1e1f FS-5368 --resolve 2013-05-03 11:03:17 -05:00
Anthony Minessale 44840fc97a fix regression in sofia profile param for t38-passthru 2013-05-02 22:36:39 -05:00
Anthony Minessale 33f08490ec refuse t38 passthru on unanswered channel 2013-05-02 22:29:02 -05:00
William King 7ce7cbda57 FS-4332: --resolve 2013-05-03 00:01:24 -05:00
William King 17781cba1c FS-5240: --resolve Please test 2013-05-02 23:57:50 -05:00
Anthony Minessale 784d5722fa FS-4875 auto setting ignore_early_media causes unwanted side effects for others, it will have to be supplied by the user 2013-05-02 21:21:51 -05:00
Anthony Minessale 4c81fdf3ee FS-5359 --resolve 2013-04-30 18:45:24 -05:00
Brian West 777ca3392a add channel data to this event 2013-04-30 14:43:47 -05:00
Brian West 30899013bc fix stop the correct way 2013-04-30 13:24:35 -05:00
Anthony Minessale 2ad0e71225 add uuid of orig picked channel too 2013-04-30 11:57:48 -05:00
Anthony Minessale 6923845033 add execute_on_pickup and api_on_pickup 2013-04-30 11:41:34 -05:00
Brian West 4ac76c7c57 fix stopping of streams 2013-04-30 12:32:45 -05:00
Anthony Minessale ff7cb252fa FS-5358 --resolve use allow-transcoding=true param in global settings or fifo_allow_transcoding=true channel var on per caller basis 2013-04-30 09:39:35 -05:00
Anthony Minessale fe3bbb3431 FS-5286 we can try this for added protection 2013-04-29 09:19:47 -05:00
Anthony Minessale 9ef0323499 FS-5355 --resolve 2013-04-29 10:09:14 -05:00
Anthony Minessale c4e7c302f9 FS-5351 --resolve 2013-04-27 08:19:18 -05:00
Seven Du a980074f16 FS-4990 Doh! fix unintentional %s 2013-04-27 17:08:35 +08:00
Seven Du 5b9318c109 FS-4990 change uuid_debug_audio to uuid_debug_media and add video params 2013-04-27 06:47:06 +08:00
Anthony Minessale 8ab04152f6 FS-4990 2013-04-26 11:07:50 -05:00
Anthony Minessale 7a42ec06df RTP stats were not being logged. There is no JIRA on this sigh 2013-04-26 09:31:28 -05:00
Mariusz Czułada 8f6d95794d Initial version of mod_say_pl 2013-04-26 00:17:50 +02:00
Mariusz Czułada b056fd06a3 Initial version of mod_say_pl 2013-04-26 00:16:49 +02:00
Brian West 88a13a7580 FS-5316 --resolve 2013-04-25 13:48:02 -05:00
Brian West d5ec949142 Add application layer keepalive options to sofia and expose config options 2013-04-25 13:34:07 -05:00
Anthony Minessale eeeb4fa445 FS-5340 --resolve 2013-04-24 16:35:58 -05:00
Anthony Minessale 032761c0f5 FS-5346 --resolve use new originate_delay_start=<ms> to get this 2013-04-24 15:07:45 -05:00
Anthony Minessale 1627fb1a59 FS-5344 --resolve 2013-04-24 12:23:43 -05:00
Anthony Minessale 15e4da68e4 FS-5342 --resolve 2013-04-24 12:12:42 -05:00
Anthony Minessale 8a727b0de4 FS-5331 2013-04-24 11:32:58 -05:00
William King 66d1755b06 If the rsession is null, then don't try to unlock it, since that'll just result in a segfault. 2013-04-23 17:52:33 -07:00
William King 5c87754e42 fixed rtmp active calls count 2013-04-23 17:52:33 -07:00
William King 1dd86108fb added rsession check before comparing its state. commented out active sessions loop 2013-04-23 17:52:32 -07:00
William King f7cb641d17 Updating the contributor tags 2013-04-23 17:52:32 -07:00
William King 6f89e2537e Moving all rtmp specific logging to use the rtmp uuid rather than the session uuid. 2013-04-23 17:52:32 -07:00
William King fa6d465711 Another variable name standardization 2013-04-23 17:52:32 -07:00
William King e379a596b2 Should resolve the last of the rsession -> session and session -> rsession on_destroy race condition issues
Conflicts:
	src/mod/endpoints/mod_rtmp/mod_rtmp.c
2013-04-23 17:52:32 -07:00
William King fec463fdfe White space cleanup and variable naming standardization 2013-04-23 17:52:32 -07:00
William King ad3a5a3572 Standardizing on rsession to reference rtmp_session_t
Conflicts:
	src/mod/endpoints/mod_rtmp/mod_rtmp.c
2013-04-23 17:52:32 -07:00
William King 7e1aad02b2 Resolve the segfault where the channel is destroyed while it is still receiving audio
Conflicts:
	src/mod/endpoints/mod_rtmp/rtmp.c
2013-04-23 17:52:32 -07:00
William King a687274308 Cleaning up and standardizing variable name to rsession if the session referenced is an rtmp_session_t 2013-04-23 17:52:32 -07:00
William King f81d17c1e2 added debugging to print ip and port of rtmp connection as well as tie the rtmp session and fs session together 2013-04-23 17:52:31 -07:00
William King d8edc031fa fixed stuck mod_rtmp session when the call is killed from fs side, such as using uuid_kill 2013-04-23 17:52:31 -07:00
Anthony Minessale de1f013f2e FS-5331 2013-04-23 18:08:41 -05:00
Anthony Minessale 25de1531ce FS-5331 2013-04-23 17:59:26 -05:00
Anthony Minessale 7ae835daf8 FS-5302 missed a word 2013-04-23 17:16:54 -05:00
Anthony Minessale d049b71ca7 favor the lessor of the configured cache-ttl or the max-age, add an abs-cache-ttl to be forced cache ttl, and add cache_ttl and abs_cache_ttl url params to set it per req 2013-04-23 15:52:41 -05:00
Anthony Minessale e1c325dcb5 FS-5341 --resolve 2013-04-23 14:49:07 -05:00
Anthony Minessale 9bf19ec74d FS-5331 2013-04-23 14:27:20 -05:00
Chris Rienzo 5f83c708ef added .vox (Dialogic/OKI ADPCM 8kHz format) to mod_sndfile 2013-04-23 16:21:02 -04:00
Anthony Minessale 3438337a16 FS-5329 --resolve 2013-04-23 10:27:40 -05:00
Anthony Minessale ec43377df7 FS-5339 --resolve 2013-04-23 10:26:16 -05:00
Anthony Minessale 5e71ab6a06 FS-5331 --resolve yes this is a bug that is now fixed 2013-04-23 10:13:54 -05:00
Anthony Minessale c1060f5d18 FS-5302 --resolve use oreka_mux_streams=true channel var or mux-all-streams=true param in the oreka.conf.xml 2013-04-22 20:49:57 -05:00
Anthony Minessale 2d96d7c165 fix minor cid issue in mod_fifo 2013-04-22 16:31:05 -05:00
Anthony Minessale 506768aa6d skip reforking with ulimit code on 64 bit 2013-04-22 13:42:35 -05:00
Anthony Minessale f0dd0ef7b1 FS-5332 --resolve 2013-04-22 13:26:19 -05:00
Anthony Minessale 6e8b5428c1 FS-5238 2013-04-22 12:55:04 -05:00
Seven Du 0bec518592 Merge branch 'master' of git://git.freeswitch.org/freeswitch 2013-04-22 23:16:24 +08:00
Seven Du 03892b5556 fix show module as json 2013-04-22 23:10:17 +08:00
Anthony Minessale ab5a0afb43 FS-5238 revert 2013-04-22 08:51:10 -05:00
Steve Underwood 88b3b54ef4 More movement towards colour FAXing 2013-04-21 22:02:09 +08:00
Anthony Minessale f92528436f FS-5302 --resolve 2013-04-19 15:25:11 -05:00
Chris Rienzo e1da1e7b38 FS-5193 --resolve input timers added to mod_pocketsphinx. 2013-04-18 22:08:58 -04:00
Chris Rienzo d764e28c57 FS-5324 try this- set define-grammar=true to force caching of grammar in play_and_detect_speech 2013-04-18 22:04:01 -04:00
Anthony Minessale b0cdad5d5d add geolocation header parser 2013-04-18 16:44:40 -05:00
Anthony Minessale c8a6c99f84 FS-5322 --resolve 2013-04-18 16:27:45 -05:00
Anthony Minessale 54d47599e9 FS-5318 update 2013-04-17 17:51:11 -05:00
Anthony Minessale 8eef28ab24 FS-5313 --resolve 2013-04-17 17:34:05 -05:00
Anthony Minessale cb9d41dd0e FS-5318 --resolve 2013-04-17 15:59:48 -05:00
Kristin King 14f77e1b9a FS-5249: --resolve add message sort ordering. 2013-04-17 15:09:39 -07:00
Anthony Minessale 7aa23c4b21 FS-5299 --resolve 2013-04-17 15:38:37 -05:00
Anthony Minessale bf607b0d91 FS-5319 --resolve 2013-04-17 15:33:27 -05:00
Anthony Minessale c4e348386d FS-5034 --resolve please document accordingly on the wiki 2013-04-17 15:24:00 -05:00
Anthony Minessale 18360a2203 FS-4622 --resolve 2013-04-17 15:18:12 -05:00
Anthony Minessale 863fbd2e35 FS-5313 2013-04-17 14:57:11 -05:00
Brian West 88a0fdcda7 2048 and sha1 default. 2013-04-17 09:48:56 -05:00
Jeff Lenk 40e33572b3 FS-5314 --resolve 2013-04-17 09:21:14 -05:00
Anthony Minessale b1447dd635 fix codec issue on recover 2013-04-16 13:02:59 -05:00
Brian West cc2efd5597 Fix silly warning 2013-04-16 12:13:45 -05:00
Anthony Minessale fda6e896e2 try to be back compat with the more logical yet incorrect sdp format for opus 2013-04-16 09:25:02 -05:00
Anthony Minessale 7c9885a045 swigall 2013-04-16 08:51:29 -05:00
Anthony Minessale be248879ae FS-5305 --resolve 2013-04-15 14:47:50 -05:00
Michael Jerris 0aa2009d1d fix case for call_completed_elsewhere var set 2013-04-15 16:45:32 -04:00
Anthony Minessale 8adeab7d5a move callstate changes down to take place after the core states have run 2013-04-15 10:43:32 -05:00
Jeff Lenk 5417ac4a85 FS-5290 --resolve 2013-04-13 12:20:15 -05:00
Brian West 8afd200023 Swap UUIDs 2013-04-12 11:56:58 -05:00
Anthony Minessale 4e85f9d544 fix some rtp regressions 2013-04-11 18:11:06 -05:00
Anthony Minessale 61b313b006 FS-5269 --resolve 2013-04-11 15:03:50 -05:00
Jeff Lenk fe4dff7c2d FS-5290 --resolve 2013-04-10 17:43:27 -05:00
Anthony Minessale 455a76434c save last sent id for validation later 2013-04-10 11:27:09 -05:00
Anthony Minessale ed4c177177 FS-5291 --resolve 2013-04-10 10:13:43 -05:00
Anthony Minessale 0fe47df2d7 don't send presence for hangup if you never sent it for early in presence_disable_early mode, it causes issues in yealink 2013-04-09 22:32:44 -05:00
Anthony Minessale c9a49b0ff3 debug 2013-04-09 21:42:32 -05:00
Anthony Minessale a67505ba74 FS-4934 2013-04-09 21:38:11 -05:00
Anthony Minessale 72df7a9fe5 fix udptl issue 2013-04-09 19:43:23 -05:00
Jeff Lenk 5f3160ef0f FS-5167 2013-04-08 21:17:02 -05:00
Anthony Minessale cbdf2ceaac FS-5265 2013-04-08 16:30:00 -05:00
Anthony Minessale 84cd461bb2 FS-5285 --resolve 2013-04-08 15:54:44 -05:00
Anthony Minessale 0e41c484a3 FS-5284 --resolve ready is meant to signify that the object is ready for external use so setting it to 1 before the bind is sufficient 2013-04-08 13:00:24 -05:00
Anthony Minessale 7fd28f58f9 FS-5208 --resolve 2013-04-08 12:09:49 -05:00
Anthony Minessale ae95109eb7 fix srtp neg in rare case 2013-04-08 13:24:39 -05:00
Anthony Minessale 1ac0654f23 FS-5281 --resolve 2013-04-08 11:53:53 -05:00
Anthony Minessale 965047615c FS-5279 --resolve some mods made to the patch 2013-04-08 11:48:20 -05:00
Anthony Minessale d50d43f788 make auto-adjust more logical 2013-04-08 11:00:28 -05:00
Raymond Chandler 1b33470163 FS-5280 --resolve bitch n bail 2013-04-08 09:51:14 -04:00
Jeff Lenk 19a9649a58 FS-5278 --resolve 2013-04-08 07:29:54 -05:00
Anthony Minessale 1e251568cc FS-5265 2013-04-06 16:32:01 -05:00
Mathieu Parent 4ccfb475de Add IPs to mod_skinny recv/send event messages
FS-5268 --resolve
thanks to Nathan Neulinger
2013-04-06 14:44:11 +02:00
Jeff Lenk bec0a5f5c3 vs2010 reswig 2013-04-05 22:08:22 -05:00
Anthony Minessale e245e81c3b sla barg cid regression 2013-04-05 16:41:51 -05:00
Anthony Minessale 18c429f66f refactor and cleanup more cid stuff 2013-04-05 15:29:57 -05:00
Anthony Minessale 312b86e331 oops 2013-04-05 15:00:46 -05:00
Anthony Minessale 5f4ee1b464 FS-5216 don't allow recursive call to speek 2013-04-05 14:27:44 -05:00
Steve Underwood f56911bb25 More steps towards colour FAX 2013-04-06 01:10:13 +08:00
Anthony Minessale 83fc8ddf3a endless cid fun 2013-04-05 08:29:16 -05:00
Jeff Lenk 11cda996a8 FS-5270 --resolve 2013-04-05 09:07:11 -05:00
Anthony Minessale b934891f49 sla cid tweaks 2013-04-05 00:38:57 -05:00
Anthony Minessale 3cc441485b revert 2013-04-05 00:38:09 -05:00
Anthony Minessale 900f2aab74 sla cid tweaks
Conflicts:
	src/mod/endpoints/mod_sofia/sofia_glue.c
2013-04-05 00:36:44 -05:00
Anthony Minessale bd421d65ff flush on answer for inbound only 2013-04-04 13:46:57 -05:00
Anthony Minessale a1999ad62a flush on answer for inbound only 2013-04-04 13:46:46 -05:00
Anthony Minessale 52c1d3c76b FS-5265 --resolve 2013-04-04 12:35:22 -05:00
Anthony Minessale 931c633eb2 FS-5262 --resolve 2013-04-04 09:20:02 -05:00
Steve Underwood a5ce5de53d More preparation for colour FAX 2013-04-04 22:53:41 +08:00
Jeff Lenk fd7d5e0801 windows compiler fixes - now builds again 2013-04-03 21:55:50 -05:00
Ken Rice 576cb8925b debug cleanup 2013-04-03 17:22:16 -05:00
Anthony Minessale d1b2ee0b4b more cid refactor 2013-04-03 17:17:34 -05:00
Jeff Lenk be273b673b windows compile another step closer 2013-04-03 15:41:46 -05:00
Mathieu Parent 5838050e4f Don't pretend we support skinny-wait timeout (See #FS 477) 2013-04-03 20:55:27 +02:00
Mathieu Parent 1d9d7b1196 Don't create a new session when pressing speeddial
Fixes #FS-5259 (Thanks to Nathan Neulinger for the patch)
2013-04-03 20:34:55 +02:00
Anthony Minessale faea5f0c08 FS-5258 --resolve 2013-04-03 09:02:13 -05:00
Brian West f1e8f09c2f FS-5255 --resolve 2013-04-03 09:01:18 -05:00
Jeff Lenk 43eaa95746 windows compile another step closer 2013-04-03 08:55:03 -05:00
Anthony Minessale e35b087f51 remove depricated vars causing issues 2013-04-02 21:12:14 -05:00
Anthony Minessale 437eedfadf only fclose open pointer 2013-04-02 20:07:10 -05:00
Anthony Minessale 69c3c7d8e2 FS-5257 --resolve you seem to be setting sip_secure_media on an inbound leg, this is not correct. This patch should auto-correct that but also beware that the variable has changed to rtp_secure_media after this commit 2013-04-02 20:05:46 -05:00
Anthony Minessale 5544db8d5e FS-5256 2013-04-02 19:10:18 -05:00
Anthony Minessale 293ed932e8 FS-5256 --resolve 2013-04-02 19:08:28 -05:00
Anthony Minessale 805514192c fix some cid stuff in fifo 2013-04-02 17:46:46 -05:00
Anthony Minessale ed782ed15b FS-5254 --resolve 2013-04-02 13:40:37 -05:00
Brian West 8839d61523 fix typo 2013-04-02 13:37:04 -05:00
Brian West e334fd064f fix variable name 2013-04-02 13:10:00 -05:00
Steve Underwood f758d53ef5 Some preparations for colour FAX 2013-04-02 20:31:19 +08:00
Anthony Minessale e23b6a22bd fix 32 bit build 2013-04-01 23:14:14 -05:00
Anthony Minessale 2207b87769 do some more caller-id cleanup 2013-04-01 23:03:14 -05:00
Raymond Chandler 46768af7cb add number translation module 2013-04-01 21:00:26 -04:00
Steve Underwood 1757331eaf Some cleanup of naming to prepare for the next step with spandsp 2013-04-02 00:18:21 +08:00
Anthony Minessale 97f0c0301f fix zrtp build 2013-04-01 09:13:39 -05:00
Anthony Minessale b7ba97f3af add new files to msvc builds 2013-03-31 21:27:27 -05:00
Anthony Minessale 74a58cd50b add mod_b64 2013-03-31 21:27:27 -05:00
Anthony Minessale fa8e199802 fix build 2013-03-31 21:27:27 -05:00
Anthony Minessale de6389dd4f workaround for silly https://code.google.com/p/chromium/issues/detail?id=177099 2013-03-31 21:27:27 -05:00
Anthony Minessale dd878da49d clean up proxy media mode 2013-03-31 21:27:27 -05:00
Anthony Minessale 157a0b8a1e fix seg in multiple m line 2013-03-31 21:27:27 -05:00
Anthony Minessale 68055eab2b support tls dir options properly 2013-03-31 21:27:26 -05:00
Anthony Minessale a4e0bae4c7 fix cert dir specification when tls is not configured (note, you probably need to move your certs for wss after this commit) 2013-03-31 21:27:26 -05:00
Anthony Minessale ee1b4db480 fix FS-5116 the new way 2013-03-31 21:27:26 -05:00
Anthony Minessale 3201478830 sigh 2013-03-31 21:27:26 -05:00
Anthony Minessale 45b4ba1afa add webrtc_enable_dtls=false (for webrtc) or enable_dtls=true (for normal calls) 2013-03-31 21:27:26 -05:00
Anthony Minessale 45bd5952b1 fix some regressions and improve candidate selection 2013-03-31 21:27:26 -05:00
Anthony Minessale b93fc016b8 move verbose_sdp to a flag and set it to true in webrtc calls 2013-03-31 21:27:25 -05:00
Anthony Minessale 4b3aa396fb fix some regessions and sync namespace of some vars 2013-03-31 21:27:25 -05:00
Anthony Minessale d33732ed00 MILESTONE: working firefox audio 2013-03-31 21:27:25 -05:00
Anthony Minessale 5d02eb7668 fix build on dingaling 2013-03-31 21:27:25 -05:00
Anthony Minessale c4b221c750 trying to get mozilla to work using sipml5, got stun/dtls/rtp flowing and its dead silent. c'mon guys... why do you have to do everything differently????? 2013-03-31 21:27:25 -05:00
Anthony Minessale 05dd02d0a6 make opus work, omfg .. serious??? you need to always advertise it as stereo using the standard way then specify it in the fmtp insread just to complicate things.... that's not cool =/ 2013-03-31 21:27:25 -05:00
Anthony Minessale 190b31871d fix auto-select of wan.auto when no candidates defined 2013-03-31 21:27:25 -05:00
Anthony Minessale 01e411c2d7 add ice based auto-adjust 2013-03-31 21:27:25 -05:00
Anthony Minessale 2a72b02f6b add switch_print_host 2013-03-31 21:27:25 -05:00
Anthony Minessale 1aecb1a9c7 remove wtf 2013-03-31 21:27:24 -05:00
Anthony Minessale bc3d2b20cd tweaks for calling local candidates 2013-03-31 21:27:24 -05:00
Anthony Minessale e1c3d51349 force the version header in the rtp packet to 2 when pulling data out of the jitter buffer because when you get a stun packet it will still be 0 from last time 2013-03-31 21:27:24 -05:00
Anthony Minessale 2aade020e9 fix dtmf and cng neg 2013-03-31 21:27:24 -05:00
Anthony Minessale 5bcf68c92d handle route for ws and wss transport 2013-03-31 21:27:24 -05:00
Anthony Minessale 9b16fb319a make sure to sort rtp vs rtcp when using rtcp mux 2013-03-31 21:27:24 -05:00
Anthony Minessale 4711fd2b92 same issue 2013-03-31 21:27:24 -05:00
Anthony Minessale 53457e05bf block code when no dtls is present 2013-03-31 21:27:24 -05:00
Anthony Minessale 2b6a0ce0a4 don't respond w/ dtls when we don't support it 2013-03-31 21:27:23 -05:00
Anthony Minessale 6b12d7b285 fix build against older openssl 2013-03-31 21:27:23 -05:00
Anthony Minessale 8d86577204 fix dtls ifdefs 2013-03-31 21:27:23 -05:00
Anthony Minessale a6a055cabb fix or and thing 2013-03-31 21:27:23 -05:00
Anthony Minessale 32bc398081 remove printf 2013-03-31 21:27:23 -05:00
Anthony Minessale ff532ec311 try to ifdef so we can still build against openssl older than 1.0.1 (but dtls would not work still in this case) 2013-03-31 21:27:23 -05:00
Anthony Minessale 5e2a71512b updated sofia api 2013-03-31 21:27:23 -05:00
Anthony Minessale ad1226b5c4 change name to match steves changes in master 2013-03-31 21:27:23 -05:00
Anthony Minessale 4cac512b97 change ssl symbol visibility to specific places in core only 2013-03-31 21:27:23 -05:00
Anthony Minessale 16fa338b49 cleanup debug and memory and add stupid code for using sep dtls session when rtcp is not mux 2013-03-31 21:27:23 -05:00
Anthony Minessale eae2e6aeca add file 2013-03-31 21:27:22 -05:00
Anthony Minessale a01ad9a1aa dtls both ways now 2013-03-31 21:27:22 -05:00
Anthony Minessale dd9271d6b9 MILESTONE: dtls-srtp inbound 2013-03-31 21:27:22 -05:00
Anthony Minessale dabb85c3f6 wip 2013-03-31 21:27:22 -05:00
Anthony Minessale e00ede7e7d unreg on sock disconnect 2013-03-31 21:27:22 -05:00
Anthony Minessale 21408d4534 ice tweaks 2013-03-31 21:27:22 -05:00
Anthony Minessale 9cc550ee18 build sdp lib inline w/ core 2013-03-31 21:27:22 -05:00
Anthony Minessale 81cd770a18 add ws-binding and wss-binding sofia profile params 2013-03-31 21:27:21 -05:00
Anthony Minessale 2cb45cc1fb wtf 2013-03-31 21:27:20 -05:00
Anthony Minessale 5fc7746297 sort out ws/wss stuff to comply with jssip 2013-03-31 21:27:20 -05:00
Anthony Minessale 668f4a6207 working mo better 2013-03-31 21:27:20 -05:00
Anthony Minessale 5c90322e8c MILESTONE: kind of works on media and signaling 2013-03-31 21:27:20 -05:00
Anthony Minessale b1c855e1aa remove debug 2013-03-31 21:27:20 -05:00
Anthony Minessale b7eac54be5 only send srflx when we need one 2013-03-31 21:27:20 -05:00
Anthony Minessale d77241c414 wip 2013-03-31 21:27:19 -05:00
Anthony Minessale aba03f9e6c set controlling when appropriate 2013-03-31 21:27:19 -05:00
Anthony Minessale 83e5a6b81f match new api 2013-03-31 21:27:19 -05:00
Anthony Minessale 3fe0b471c1 switch rtp flags format usage on switch_rtp_new 2013-03-31 21:27:19 -05:00
Anthony Minessale f1e304cc29 wip 2013-03-31 21:27:19 -05:00
Anthony Minessale aa3368a1ac wip 2013-03-31 21:27:19 -05:00
Anthony Minessale daea865e7b fix rtcp 2013-03-31 21:27:19 -05:00
Anthony Minessale 72e2d183c1 update to cvs head srtp 2013-03-31 21:27:19 -05:00
Anthony Minessale aad4da5b71 typo 2013-03-31 21:27:18 -05:00
Anthony Minessale f431d10e4d update to rtp api 2013-03-31 21:27:18 -05:00
Anthony Minessale 12e70149ff rtcp-mux 2013-03-31 21:27:18 -05:00
Anthony Minessale 36d1388a99 forgot 2013-03-31 21:27:18 -05:00
Anthony Minessale 1c120dd2c8 not too shabby audio and vid work both directions but browswer hates our srtcp ... 2013-03-31 21:27:18 -05:00
Anthony Minessale 1db0e26e8e wip 2013-03-31 21:27:18 -05:00
Anthony Minessale 76502d9027 wip 2013-03-31 21:27:18 -05:00
Anthony Minessale aea974a91f MILESTONE: audio and video working inbound 2013-03-31 21:27:18 -05:00
Anthony Minessale 20bbee8765 fix sdp gen 2013-03-31 21:27:17 -05:00
Anthony Minessale 6939394530 isolate sdp parser code to the switch_core_media.c 2013-03-31 21:27:17 -05:00
Anthony Minessale 052ee0a1fa wip 2013-03-31 21:27:17 -05:00
Anthony Minessale 7510bccd6c MILESTONE: working inbound calls 2013-03-31 21:27:17 -05:00
Anthony Minessale cb076e6b28 fucked 2013-03-31 21:27:17 -05:00
Anthony Minessale 5490cdf456 wip 2013-03-31 21:27:17 -05:00
Anthony Minessale 20568e64df wip 2013-03-31 21:27:17 -05:00
Anthony Minessale f5e2a2e0ee fix cng 2013-03-31 21:27:17 -05:00
Anthony Minessale 241300fb56 port over revovery code 2013-03-31 21:27:16 -05:00
Anthony Minessale e4aead198e compiles and runs and probably chok full o bugs 2013-03-31 21:27:16 -05:00
Anthony Minessale 078d963222 MILESTONE: all the crap out of tech_pvt and sofia in general related to media shit 2013-03-31 21:27:16 -05:00
Anthony Minessale 85308861d8 almost rid of crufty tech_pvt members 2013-03-31 21:27:16 -05:00
Anthony Minessale 75c95fa98e MILESTONE: working audio and no reference to rtp_session in all of sofia 2013-03-31 21:27:15 -05:00
Anthony Minessale caee4cbf46 replace 2013-03-31 21:27:15 -05:00
Anthony Minessale 92ddf47293 expose some rtp func via media handle 2013-03-31 21:27:15 -05:00
Anthony Minessale faaf642d5c calls both ways still gotta push more into the core 2013-03-31 21:27:15 -05:00
Anthony Minessale 1f61ad76a4 savs 2013-03-31 21:27:15 -05:00
Anthony Minessale d012c5f392 omg it can make calls ... long way to go ... 2013-03-31 21:27:15 -05:00
Anthony Minessale 48554d1a85 compiles 2013-03-31 21:27:15 -05:00
Anthony Minessale 22d838b4f6 pass2 2013-03-31 21:27:15 -05:00
Anthony Minessale 0fffc839e4 pass1 2013-03-31 21:27:14 -05:00
Anthony Minessale 3c51053bb4 compiles the core wow 2013-03-31 21:27:14 -05:00
Anthony Minessale eb81042a6f wip 2013-03-31 21:27:14 -05:00
Anthony Minessale d6af3a1fdd omfg 2013-03-31 21:27:14 -05:00
Anthony Minessale 10010d47c1 wip 2013-03-31 21:27:14 -05:00
Anthony Minessale 1ab88581d7 rename 2013-03-31 21:27:14 -05:00
Anthony Minessale f6b56c3983 wip 2013-03-31 21:27:14 -05:00
Anthony Minessale 0d1acb08ff add video srtp 2013-03-31 21:27:13 -05:00
Anthony Minessale e747229f5e typo 2013-03-31 21:27:13 -05:00
Anthony Minessale 0a246d1cb4 pull srtp negotiation stuff into the core stage 1 2013-03-31 21:27:13 -05:00
Anthony Minessale 330f68d946 convert rtp flags to arrays 2013-03-31 21:27:13 -05:00
Anthony Minessale 592993ecda baseline 2013-03-31 21:27:13 -05:00
Brian West 4f47c49590 missing zset 2013-03-30 19:55:55 -05:00
Anthony Minessale dd1e61e0d4 part 2 of other cid patch 2013-03-30 15:39:49 -05:00
Mathieu Parent 860d952efd EndCall for incoming call while on hold doesn't close both legs on a skinny phone
Fixes #FS-5232, thanks to Nathan Neulinger for the patch
2013-03-30 12:00:58 +01:00
Anthony Minessale e976144ef1 FS-5216 seems like invalid codec lets try this 2013-03-29 22:35:32 -05:00
Anthony Minessale 262aed0ed1 remove debug code 2013-03-29 22:12:54 -05:00
Anthony Minessale dcb4beb12f update caller_id not callee_id when getting a display update from an inbound leg 2013-03-29 22:07:35 -05:00
Chris Rienzo f8d263683a --resolve FS-5243 improve mod_unimrcp audio buffering 2013-03-30 00:19:07 -04:00
Brian West 49138460a3 fix 2013-03-29 17:55:50 -05:00
Anthony Minessale c0f736c9da FS-5242 2013-03-29 10:54:45 -05:00
Anthony Minessale 47e6dfbbdf FS-5242 2013-03-29 10:43:12 -05:00
Anthony Minessale aca9257f93 tweaks for caller id in certian uuid_bridge situations 2013-03-28 22:17:28 -05:00
Brian West 32b7673cde Fix Execute on in early media situations 2013-03-28 14:19:23 -05:00
Anthony Minessale e6ef517354 FS-5011 add sync up flags so neither file writes data until audio is moving both ways 2013-03-28 10:41:28 -05:00
Anthony Minessale 3b6ae8966d set bridge times before firing the bridge event 2013-03-28 10:12:00 -05:00
Michael Jerris b15ac31174 dont ever return success when we don't end up with a new session 2013-03-28 11:24:49 -04:00
Seven Du fe1a758338 fix void * arithmatic warning 2013-03-28 17:36:01 +08:00
Brian West b8b7176086 remove debug line left in by accident 2013-03-27 22:19:58 -05:00
Anthony Minessale 6cedccd6fe FS-5229 missed a spot 2013-03-27 18:47:13 -05:00
Anthony Minessale 7818c3c9ed add SMBF_ONE_ONLY flag and use it on dtmf detectors 2013-03-27 17:19:40 -05:00
Anthony Minessale e3ac7c50ac FS-5238 --resolve 2013-03-27 16:50:10 -05:00
Anthony Minessale 14e3570848 add switch_core_session_findall to get a list of all open uuid 2013-03-27 15:51:23 -05:00
Anthony Minessale b4e21fd3f6 FS-5229 --resolve oops, i missed the part that its subsequent calls to displace 2013-03-27 15:39:10 -05:00
Anthony Minessale c510a81177 do not pause callers when they come out of a bridge 2013-03-27 15:18:54 -05:00
Anthony Minessale 861c3e3ccc add switch_core_get_variables and allow execute_on funcs to see global vars too 2013-03-27 14:54:01 -05:00
Anthony Minessale eed868af6c FS-5230 --resolve this was actually a bug in the -1 val in send_silence_when_idle 2013-03-27 13:52:03 -05:00
Anthony Minessale 8efaea29af FS-5228 --resolve problem was actually in the send_silence code as used from park not uuid_displace but uuid_displace relies on the write stream so thus it was a symptom 2013-03-27 13:40:51 -05:00
Anthony Minessale 3b50675d25 FS-5231 --resolve 2013-03-27 12:41:17 -05:00
Anthony Minessale f7408f8829 FS-4903 --resolve some of these are better of reverted but not all, this should work 2013-03-27 12:31:40 -05:00
Anthony Minessale 44f529381f FS-5233 --resolve 2013-03-27 11:46:12 -05:00
Anthony Minessale c4347e6e81 FS-5234 --resolve 2013-03-27 11:37:15 -05:00
Anthony Minessale 4fe24be75d fix bug where originate can return success when it should not 2013-03-27 11:28:43 -05:00
Anthony Minessale 18b8007217 FS-5235 --resolve 2013-03-27 11:12:35 -05:00
Anthony Minessale 3226882682 FS-5203 --resolve 2013-03-27 11:09:07 -05:00
Anthony Minessale 3f118b18dc FS-5236 --resolve 2013-03-27 11:06:32 -05:00
Chris Rienzo 7af706113a FS-5221 --resolve set NOSIGNAL on http_get 2013-03-26 23:50:29 -04:00
Anthony Minessale 231a9c7e8f change ready to up in this case 2013-03-26 16:37:47 -05:00
Anthony Minessale a803e849eb add execute_on_pre_bridge and execute_on_post_bridge vars to behave like the other family of execute_on and not break the existing pre bridge vars that are now depricated 2013-03-26 16:33:13 -05:00
Anthony Minessale 42e679f023 FS-5226 --resolve 2013-03-26 15:50:07 -05:00
Anthony Minessale 3bb6acf066 FS-5223 2013-03-26 15:44:26 -05:00
Mathieu Parent 03137f98ab Fix in-band ringback in mod_skinny
Closes: FS-4241 (Thanks to Marek Wiewiorski for the patch)
2013-03-26 22:36:56 +01:00
Mathieu Parent e0b34881af mod_skinny parses and modifies odbc url, breaking it, but also doesn't use the resulting vars
Closes: FS-5224 (Thanks to Nathan Neulinger for the patch)
2013-03-26 22:29:40 +01:00
Mathieu Parent e5ab581837 examples for the ext-voicemail and ext-redial options to mod_skinny sample conf
Closes: FS-5227 (Thanks to Nathan Neulinger for the patch)
2013-03-26 22:21:44 +01:00
Mathieu Parent c3b30a88e3 MIN is an aggregate function on MySQL
Closes: FS-5218 (Thanks to Nathan Neulinger for the patch)
2013-03-26 22:16:44 +01:00
Anthony Minessale bb3114e96b FS-5171 try this version 2013-03-26 13:23:38 -05:00
Anthony Minessale 10af50d96c FS-5219 --resolve 2013-03-26 10:09:02 -05:00
Jeff Lenk a5cd84304e oops line endings 2013-03-26 10:18:44 -05:00
Jeff Lenk 74767e7a49 FS-4321 --resolve 2013-03-26 10:02:53 -05:00
Daniel Swarbrick 49bcd15008 Merge branch 'master' of ssh://git.freeswitch.org:222/freeswitch 2013-03-26 01:20:08 +01:00
Daniel Swarbrick e6f6c32c6f minor tidyup of user-submitted patch from last year 2013-03-26 01:19:30 +01:00
Anthony Minessale e74e46be27 FS-5171 please test 2013-03-25 17:57:51 -05:00
Anthony Minessale b6ed7c26c3 FS-5214 --resolve 2013-03-25 17:02:05 -05:00
Jeff Lenk 772e9f4c70 FS-4568 --resolve 2013-03-24 14:32:56 -05:00
Michael S Collins 0ec0153b99 fs_encode: load mod_spandsp before loading mod_native_file so that the latter picks up all the codecs offered by the former 2013-03-22 16:40:42 -07:00
Jeff Lenk 83ed0bd399 remove debug code 2013-03-22 15:52:36 -05:00
Anthony Minessale 955b900f3e FS-5011 catch sid frames and change them to cng 2013-03-22 13:47:38 -05:00
Anthony Minessale 9c255aff76 allow specific removal of media bugs by function name 2013-03-22 11:20:34 -05:00
Anthony Minessale 818f8521e0 don't choose 0 port for proxy mode 2013-03-22 10:34:31 -05:00
Anthony Minessale 0ca2c2b0e7 print message before destroying obj 2013-03-22 10:28:15 -05:00
Jeff Lenk 5406fb8a11 FS-5185 --resolve 2013-03-22 08:40:45 -05:00
Jeff Lenk 65ba846a30 FS-5100 --resolve 2013-03-22 07:44:22 -05:00
Christopher Rienzo 0481ce78ff tabs instead of spaces 2013-03-21 23:18:31 -04:00
Jeff Lenk 0fa438a748 FS-5178 --resolve 2013-03-21 21:36:20 -05:00
Anthony Minessale 0f4f0e71c3 FS-5192 --resolve 2013-03-21 15:55:24 -05:00
Anthony Minessale 909e5f3b01 FS-5204 --resolve 2013-03-21 14:37:53 -05:00
Anthony Minessale d75faa6913 stray q 2013-03-21 14:23:43 -05:00
Anthony Minessale d1292919fb FS-5209 --resolve 2013-03-21 13:52:33 -05:00
Anthony Minessale 56e1e9c83e FS-5202 2013-03-21 13:49:33 -05:00
Anthony Minessale a65a03a7dd revert unintended change 2013-03-21 13:05:35 -05:00
Seven Du 1ce96ce9f5 fix seg when mod unload with event_sink listeners present 2013-03-21 12:58:25 +08:00
Anthony Minessale dba6530eb5 FS-5011 try this rev 2013-03-20 18:58:34 -05:00
Raymond Chandler cd0dc2c0af Merge branch 'master' of fs-git:freeswitch 2013-03-20 15:10:31 -04:00
Raymond Chandler 09a3e63b15 add param to not fail module load on device fail 2013-03-20 15:10:19 -04:00
Raymond Chandler 2b8b6cef0c Merge branch 'master' of fs-git:freeswitch 2013-03-19 22:32:51 -04:00
Raymond Chandler d60317c153 FS-5091 --resolve avoid division by 0 2013-03-19 22:32:40 -04:00
Anthony Minessale 4ecba7fea8 FS-5011 please retest with this patch 2013-03-19 20:54:33 -05:00
Anthony Minessale de9714d772 FS-5194 --resolve 2013-03-19 09:16:36 -05:00
Anthony Minessale 43b3a98b09 FS-5011 please update and retest with new logs 2013-03-19 08:51:20 -05:00
Anthony Minessale c7fcf8c3c6 FS-5200 --resolve this patch did not apply please be up to date with latest HEAD when generating patches 2013-03-19 08:39:19 -05:00
Anthony Minessale 8afe9f3c3f FS-5196 --resolve 2013-03-19 08:31:57 -05:00
Chris Rienzo a8cb98c7f9 mod_http_cache: added http_cache file format that won't conflict with mod_httapi. 2013-03-19 08:59:39 -04:00
Anthony Minessale 2dc3b47db1 FS-5196 --resolve 2013-03-18 16:12:11 -05:00
Anthony Minessale e7f6ea7200 FS-5197 --resolve 2013-03-18 16:08:46 -05:00
Chris Rienzo f45fa08e15 mod_http_cache: add support for http/https formats if enable-file-formats is set to true in http_cache.conf. Don't load mod_httapi if you use this option 2013-03-18 17:58:51 -04:00
Jeff Lenk f05b493367 Revert "FS-3996 --resolve stop conference recording when only 1 person left"
This reverts commit 05895faa77.
2013-03-18 12:41:07 -05:00
Giovanni Maruzzelli 6afa0fd542 FS-5148: noise at beginning of call, probably from uncleaned buffer 2013-03-16 22:14:25 +01:00
Anthony Minessale f368369945 FS-5187 --resolve A 1 character typo.... 2013-03-15 20:47:03 -05:00
Anthony Minessale abdc4bf091 add some more mime types for wav and mp3 2013-03-15 20:34:24 -05:00
Anthony Minessale bd72a7fc60 fix seg when piggybacking mono files with stereo in file stream 2013-03-15 20:34:24 -05:00
Anthony Minessale a684e7511d fix cache file messup 2013-03-15 20:34:24 -05:00
Christopher Rienzo e917202d5e FS-5188 --resolve Allow full path to grammar in mod_pocketsphinx 2013-03-15 19:53:13 -04:00
Anthony Minessale 424738e9c5 FS-5184 --resolve never too much logging 2013-03-15 09:40:01 -05:00
Anthony Minessale ee308f00de FS-4875 --resolve 2013-03-15 09:36:57 -05:00
Anthony Minessale a28f19b7a2 FS-5011 update to this version and repost the same trace if you still have problems 2013-03-15 09:24:47 -05:00
Di-Shi Sun 69bd8edf41 Rewrote mod_osp module and updated documentation. 2013-03-15 08:32:02 +00:00
Anthony Minessale 84709b8b61 FS-5180 --resolve 2013-03-14 15:18:51 -05:00
Anthony Minessale 8523f22578 fix shutdown race in queue managers 2013-03-14 13:35:42 -05:00
Anthony Minessale 43e8fb6be4 FS-5176 --resolve 2013-03-14 11:06:02 -05:00
Anthony Minessale f2a260d81f FS-5171 Please try this. Get a similar trace and if you can, compare it to the trace without the SBC in place. 2013-03-14 10:58:17 -05:00
Jeff Lenk 16289ce9a4 FS-5166 --resolve exec for windows 2013-03-13 22:24:25 -05:00
Anthony Minessale 77ee3fe10c fix a few rare race conditions that could lead to a lockup 2013-03-13 16:10:42 -05:00
Anthony Minessale 4e812bb263 FS-5169 --resolve 2013-03-13 10:37:44 -05:00
Brian West 7d29a92f55 Allow logging of detailed verbose per UUID for debugging 2013-03-11 22:35:18 -05:00
Anthony Minessale 5655320dae FS-5087 --resolve 2013-03-11 09:33:08 -05:00
Anthony Minessale 0026f9e496 FS-5163 --resolve 2013-03-11 09:14:11 -05:00
Seven Du 5f733b24bf FS-4225 2013-03-11 18:04:05 +08:00
Jeff Lenk 05895faa77 FS-3996 --resolve stop conference recording when only 1 person left 2013-03-10 15:14:53 -05:00
Jeff Lenk 6fe64c68c0 FS-4000 --resolve 2013-03-10 15:02:09 -05:00
Steve Underwood 45eaaf4178 Spandspi's FAX engine now gives separate size and resolution information about
the images on the line and the images in the file. The ties in with the recent
addition of image resizing and flattenign for colur images.
mod_spandsp has been changed to make use of the additional information.
2013-03-10 20:55:21 +08:00
Jeff Lenk d9a4b8a9b0 FS-5156 --resolve default configuration needs new dsn 2013-03-09 13:00:22 -06:00
Anthony Minessale e942571876 FS-5160 --resolve This is depricated in favor of {loops=10}tone_stream://path=/foo/bar.ttml adding legacy code to let both ways work 2013-03-09 07:58:15 -06:00
Anthony Minessale 3034de6e79 FS-5155 2013-03-08 08:24:50 -06:00
Ken Rice eee1755c42 printf no bueno 2013-03-07 19:04:32 -06:00
Anthony Minessale e8ecf7c887 FS-4846 --resolve 2013-03-07 16:21:37 -06:00
Anthony Minessale c7b6327cfa FS-5149 --resolve 2013-03-07 14:46:42 -06:00
Anthony Minessale 9fc4beeaa5 FS-3576 --resolve 2013-03-07 08:44:32 -06:00
Ken Rice 1a1153e04a FS-5147 --resolve 2013-03-06 23:36:15 -06:00
Anthony Minessale 9ccdf30ed2 sqlite can't handle bi-directional mutexing 2013-03-06 18:02:01 -06:00
Anthony Minessale 228f9772d7 dont destroy handle when subs are inside a call's dialog 2013-03-06 18:02:01 -06:00
Anthony Minessale a70a0ca05a declinatio mortuus obfirmo 2013-03-06 13:59:02 -06:00
Michael Jerris 3e4fb4b0a2 check for vm caller id info later so if its transfered it gets the updated details 2013-03-06 13:23:28 -05:00
Anthony Minessale b084ba9955 change fs_encode to support raw files to wav or to other raw 2013-03-05 13:33:32 -06:00
Anthony Minessale d9d238b183 FS-5139 --resolve 2013-03-05 13:33:07 -06:00
Anthony Minessale 57d6495248 FS-5141 revert f8d769ae1c from FS-4289 2013-03-05 09:07:02 -06:00
Anthony Minessale 662759b8f9 FS-5141 revert f8d769ae1c from FS-4289 2013-03-05 08:50:08 -06:00
Anthony Minessale 3d2457eddd FS-5120 please update and test this version 2013-03-01 09:29:47 -06:00
Anthony Minessale aa8f7c975f fix bridge_early_media in transcoding situation 2013-02-28 18:44:38 -06:00
Anthony Minessale 86c1dbee2f FS-5136 set ringback and bridge_early_media=true and it should fall to playing the ringback when the 180 hits 2013-02-28 14:52:33 -06:00
Jeff Lenk a7577d7ee1 FS-5048 trivial build for windows 2013-02-28 14:30:56 -06:00
Raymond Chandler 04a2a88c98 FS-5048 --resolve refactored patch applied with author header 2013-02-28 14:32:50 -05:00
Anthony Minessale 864598caeb FS-5121 --resolve 2013-02-28 09:58:57 -06:00
Anthony Minessale bf93eb47e9 FS-5131 --resolve indeed, nice catch 2013-02-28 09:28:00 -06:00
Anthony Minessale 1b8ef1842e FS-4289 changed to backup the file with epoch time instead of delete it 2013-02-28 09:17:46 -06:00
Raymond Chandler 0a4e031f2a Merge branch 'master' of fs-git:freeswitch 2013-02-28 01:39:51 -05:00
Raymond Chandler b70ac964a7 FS-5101 --resolve add option to dial lcr/[profile/]<number> 2013-02-28 01:39:41 -05:00
Anthony Minessale 8258e782d4 add processing of codec event to pick up on codec changes properly in channels table 2013-02-27 14:15:44 -06:00
Anthony Minessale 0b9ed0c7ca FS-5132 --resolve 2013-02-27 12:11:55 -06:00
Anthony Minessale fc1316601b FS-5118 take 2 2013-02-27 09:04:55 -06:00
Anthony Minessale e76e6b20f6 FS-5129 --resolve 2013-02-26 20:48:39 -06:00
Anthony Minessale cf7c9428fb FS-5118 --resolve 2013-02-26 16:37:33 -06:00
Jeff Lenk be3df1b1c2 vs2010 reswig 2013-02-26 17:11:08 -06:00
Anthony Minessale 48e9a476c9 detect extension based on content-type when one is not specified for wav and mp3 2013-02-26 15:36:24 -06:00
Anthony Minessale 50e7a09eca FS-4709 this is the right way to do this part 2013-02-26 15:32:19 -06:00
Anthony Minessale 32806de57c add presence_disable_early var to disable early on per call basis 2013-02-26 14:03:37 -06:00
Anthony Minessale aa89eab58f FS-4709 --resolve, not adding the change to switch_rtp I want to have that log line there, don't make vanity changes mixed in with code changes 2013-02-26 11:49:17 -06:00
Anthony Minessale 9c00466dae FS-5127 --resolve 2013-02-26 11:05:49 -06:00
Ken Rice babeca40dd FS-5128 --resolve 2013-02-26 10:44:32 -06:00
Ken Rice f8d769ae1c FS-4289 --resolve 2013-02-25 20:02:06 -06:00
William King 14ce24950e FS-4714: remove the DEBUG to DEBUG1 change 2013-02-25 17:45:10 -08:00
Anthony Minessale a76b352a1e FS-5011 --resolve if you use record_session with a filename with no extension it will record 2 files with that base-name and with extensions -in.XXX and -out.XXX where XXX is the codec name 2013-02-25 16:32:09 -06:00
Anthony Minessale 8987e96744 add dedicated mutex for select based sql stuff 2013-02-25 15:42:26 -06:00
Michael Jerris 42de032273 change duplicate FIFO-Action from bridge-consumer-stop to channel-consumer-stop (same for start) for the set of events that were not for the bridge. Also, when trying to pull a specific call out of queue, end pending outbound calls to the agent first to avoid blocking 2013-02-25 17:03:37 -05:00
Anthony Minessale 28680c5e58 fix callstate stuff to behave right on outbound calls 2013-02-23 12:55:58 -06:00
Giovanni Maruzzelli 3e31837a0b ERROR: code not reachable on Windows Visual Studio Express 2008 2013-02-23 12:31:26 +01:00
Anthony Minessale 2491c33af6 always try realtime first and let ppl use -np themselves if its a problem 2013-02-22 17:49:12 -06:00
Anthony Minessale ee7dd033fd fix race condition in state thread 2013-02-22 17:46:54 -06:00
Anthony Minessale 31865f0dc4 FS-5116 --resolve 2013-02-21 15:34:03 -06:00
Jeff Lenk 1efcc01c2a FS-5108 --resolve 2013-02-21 15:20:06 -06:00
Anthony Minessale dd3bd238c5 limit simo reg processing threads to 25 and add param to raise it 2013-02-21 12:26:30 -06:00
Anthony Minessale 362b101ede FS-5024 please use the new application from this patch media_reset in place of setting bypass_media=false 2013-02-21 11:44:18 -06:00
Anthony Minessale 3c7f8f8119 FS-5085 2013-02-20 16:44:51 -06:00
Anthony Minessale 042347802b changing the params thing a bit, use {foo=bar} syntax instead 2013-02-20 16:34:22 -06:00
Jeff Lenk 3400a0a6da fix trivial compiler warnings 2013-02-20 16:36:41 -06:00
Anthony Minessale d9c4b269b6 add params to soundfiles and implement ;timeout=N to set a particular timeout in milliseconds especially usefule with streams that never end naturally like local_stream:// 2013-02-20 13:07:44 -06:00
Michael S Collins 3fc0f2f28d Add missing IVR config item: confirm-key. Variable was being passed into the init function but it never got put into the data struct 2013-02-20 09:45:06 -08:00