]> git.ipfire.org Git - thirdparty/freeswitch.git/log
thirdparty/freeswitch.git
14 years agoFix recovery when nat is involved
Brian West [Fri, 9 Sep 2011 07:47:56 +0000 (02:47 -0500)] 
Fix recovery when nat is involved

14 years agoswigall
Brian West [Fri, 9 Sep 2011 05:34:41 +0000 (00:34 -0500)] 
swigall

14 years agofix wrong media ip in recover data issue
Anthony Minessale [Thu, 8 Sep 2011 22:13:28 +0000 (17:13 -0500)] 
fix wrong media ip in recover data issue

14 years agodoh
Anthony Minessale [Thu, 8 Sep 2011 21:55:40 +0000 (16:55 -0500)] 
doh

14 years agoyield when doing b64 encode to avoid stealing the cpu on single proc crappy hardware
Anthony Minessale [Thu, 8 Sep 2011 21:46:10 +0000 (16:46 -0500)] 
yield when doing b64 encode to avoid stealing the cpu on single proc crappy hardware

14 years agofix unlikely failure condition
Anthony Minessale [Thu, 8 Sep 2011 21:44:57 +0000 (16:44 -0500)] 
fix unlikely failure condition

14 years agoadd auth username to unreg event
Michael Jerris [Thu, 8 Sep 2011 21:57:07 +0000 (17:57 -0400)] 
add auth username to unreg event

14 years agoFS-3548 --resolve
Anthony Minessale [Thu, 8 Sep 2011 15:44:44 +0000 (10:44 -0500)] 
FS-3548 --resolve

14 years agoFS-3549 --resolve This patch will probably make it work but the bug is actually in...
Anthony Minessale [Thu, 8 Sep 2011 15:24:05 +0000 (10:24 -0500)] 
FS-3549 --resolve This patch will probably make it work but the bug is actually in the phone, the patch is simply tolerating the bad behaviour.  You are correct about the a=sendonly missing, this was fixed in a later revision of the polycom firmware.  I suggest that even if this patch works, that you update your phones to a newer firmware, preferably the most recent.

14 years agorevert forgot jira info
Anthony Minessale [Thu, 8 Sep 2011 15:23:40 +0000 (10:23 -0500)] 
revert forgot jira info

14 years agoThis patch will probably make it work but the bug is actually in the phone, the patch...
Anthony Minessale [Thu, 8 Sep 2011 15:22:46 +0000 (10:22 -0500)] 
This patch will probably make it work but the bug is actually in the phone, the patch is simply tolerating the bad behaviour.  You are correct about the a=sendonly missing, this was fixed in a later revision of the polycom firmware.  I suggest that even if this patch works, that you update your phones to a newer firmware, preferably the most recent.

14 years agodon't turn X-FS- headers into variables, they are reserved for FS specific communicat...
Anthony Minessale [Thu, 8 Sep 2011 15:01:52 +0000 (10:01 -0500)] 
don't turn X-FS- headers into variables, they are reserved for FS specific communication and should not be passed on

14 years agofreetdm: fix small bug reported in freeswitch-dev where the call_id member of sigmsg
Moises Silva [Thu, 8 Sep 2011 16:50:34 +0000 (12:50 -0400)] 
freetdm: fix small bug reported in freeswitch-dev where the call_id member of sigmsg
         is not being set for SIGEVENT_START event

14 years agoFS-3545 --resolve no, that was not the intention, I missed a few more spots to hack...
Anthony Minessale [Thu, 8 Sep 2011 14:48:21 +0000 (09:48 -0500)] 
FS-3545 --resolve no, that was not the intention, I missed a few more spots to hack in the exception for iLBC, (thanks for marring my code iLBC ppl) it should work as expected now even with the m_per_ptime on

14 years agoadd RTP_BUG_ACCEPT_ANY_PACKETS to disable dropping invalid packets for interop with...
Anthony Minessale [Thu, 8 Sep 2011 13:57:28 +0000 (08:57 -0500)] 
add RTP_BUG_ACCEPT_ANY_PACKETS to disable dropping invalid packets for interop with Oracle CCA

14 years agoFS-3529 please try this revision I suspect its related to some uninitilized memory...
Anthony Minessale [Thu, 8 Sep 2011 13:12:07 +0000 (08:12 -0500)] 
FS-3529 please try this revision I suspect its related to some uninitilized memory causing flags to be set that are not in the dtmf structure in certian cases

14 years ago[FreeTDM] Add (experimental) ftmod_misdn
Stefan Knoblich [Wed, 7 Sep 2011 20:51:29 +0000 (22:51 +0200)] 
[FreeTDM] Add (experimental) ftmod_misdn

Add I/O plugin for mISDN stack that is included in the linux kernel
since version 2.6.27.

The in-kernel mISDN stack uses a socket based interface (AF_ISDN),
data and control commands are exchanged via datagram messages.

This makes writing a driver that doesn't use a separate (per-span)
thread to handle all incoming events a bit tricky, because responses
to control messages and incoming data are mixed and interfacing
with the synchronous FreeTDM I/O API is problematic.

B(*)/D-channel handling:

The current version uses misdn_wait() to poll() for activity on
the non-blocking channel sockets and misdn_read() to receive and
handle all pending events up to the first PH_DATA_IND (data) message
(which is what the caller of the read method is actually after).

In case no data has been received, misdn_read() returns FTDM_SUCCESS
with *datalen = 0, which is OK for all the signalling modules tested
(ftmod_libpri and (out-of-tree) ftmod_isdn).

To send data, misdn_write() is called, which just sends a PH_DATA_REQ
message to the mISDN channel socket.

(*) B-channels use a per-channel timerfd as a timing reference for
'ready-for-write' poll()ing in misdn_wait().

This is a workaround for a limitation of mISDN sockets, which do not
support POLLOUT waiting on b-channel sockets (in a useful way).

Sending/receiving of data works the same way as on d-channels, otherwise.

The module has received some minimal testing using a beronet
single-port HFC E1 and a HFC4-S quad-port BRI card on linux-3.0.x.

--- Limitations ---

 - Only the most basic features have been implemented (alarms,
   sending/receiving data/audio).

 - Spans are limited to E1 and BRI/BRI_PTMP trunk types.

 - D-Channels only work on 16 for PRI and 3 for BRI.

 - NT/TE mode information is not available from freetdm.conf /
   at configure_span()-time so the module assumes TE mode,
   which should be only a problem for cards that can change
   the port configuration (pin-out) from software.

 - Current design (b-channel timerfd / misdn_wait()/_read()/_write())
   should be fine for most SoHo use-cases
   (scalability / cpu usage / timing precision).

--- Requirements ---

 - mISDNif.h header (/usr/include/mISDN/mISDNif.h), provided by mISDNuser
   (http://isdn.eversberg.eu/download/lcr-1.7/mISDNuser-20100525.tar.gz).

 - Linux kernel with mISDN and timerfd enabled (>= 2.6.27)
   and libc with timerfd support.

mISDN options can be found in the:

"Device Drivers" -> "ISDN support" -> "Modular ISDN driver"

section of make menuconfig. Timerfd is usually enabled by default.

The FreeTDM configure script will check for missing mISDNif.h
header and timerfd support and print a message.

You should see the following in the summary screen on success:

ftmod_misdn........................ yes

NOTE: Forcing mISDN support using the "--with-misdn" configure option,
      will cause the configure script to fail on the first missing
      dependency.

--- Usage ---

To use the module, make sure you have mISDN support in the kernel
(kernel modules loaded or kernel with built-in mISDN running),
the "misdn_info" application shipped with mISDNuser will output
a list of available mISDN ports on your system, e.g.:

Found 5 ports
  Port  0 'hfc-4s.1-1':      TE/NT-mode BRI S/T (for phone lines & phones)
                              2 B-channels: 1-2
                                B-protocols: RAW HDLC X75slp
  ...

  Port  4 'hfc-e1.2':        TE/NT-mode PRI E1  (for phone lines & E1 devices)
                             30 B-channels: 1-15 17-31
                                B-protocols: RAW HDLC X75slp

NOTE: ftmod_misdn will print an error message if mISDN support is not available,
      or if there are no ports installed.

- Example freetdm.conf settings

[span misdn BRI_1]
trunk_type => BRI_PTMP
b-channel => 0:1,2
d-channel => 0:3

[span misdn PRI_1]
trunk_type => E1
b-channel => hfc-e1.2:1-15,17-31
d-channel => hfc-e1.2:16

Signed-off-by: Stefan Knoblich <stkn@openisdn.net>
14 years agoadd config file and tweak modules.conf.in for mod_cdr_mongodb
Daniel Swarbrick [Wed, 7 Sep 2011 21:57:44 +0000 (23:57 +0200)] 
add config file and tweak modules.conf.in for mod_cdr_mongodb

14 years agoadd MongoDB CDR module
Daniel Swarbrick [Wed, 7 Sep 2011 21:50:25 +0000 (23:50 +0200)] 
add MongoDB CDR module

14 years agoFS-3080 --resolve better fix for voicemail email key match
Jeff Lenk [Wed, 7 Sep 2011 15:50:30 +0000 (10:50 -0500)] 
FS-3080 --resolve better fix for voicemail email key match

14 years agoFS-3545 --resolve this is actually compliant when mixing ptimes in the same sdp but...
Anthony Minessale [Wed, 7 Sep 2011 13:07:04 +0000 (08:07 -0500)] 
FS-3545 --resolve this is actually compliant when mixing ptimes in the same sdp but since iLBC uses its own fmtp for ptime I will add this patch to make it beleive its 20 for the sake of arguement.  If you have any other problems with this, set the channel or global variable sdp_m_per_ptime=false to completely disable the default correct behaviour

14 years agoFS-3544 --resolve
Jeff Lenk [Wed, 7 Sep 2011 02:27:13 +0000 (21:27 -0500)] 
FS-3544 --resolve

14 years agofinish up last commit
Anthony Minessale [Tue, 6 Sep 2011 20:07:51 +0000 (15:07 -0500)] 
finish up last commit

14 years agoreswig
Anthony Minessale [Tue, 6 Sep 2011 21:30:04 +0000 (16:30 -0500)] 
reswig

14 years agoadd sendmsg function to esl
Anthony Minessale [Tue, 6 Sep 2011 19:53:38 +0000 (14:53 -0500)] 
add sendmsg function to esl

14 years agosplit on space not colon
Anthony Minessale [Tue, 6 Sep 2011 18:56:44 +0000 (13:56 -0500)] 
split on space not colon

14 years agoallow duplicate headers to be parsed into events received on the wire
Anthony Minessale [Tue, 6 Sep 2011 18:56:21 +0000 (13:56 -0500)] 
allow duplicate headers to be parsed into events received on the wire

14 years agospeed up restart speed of profiles
Anthony Minessale [Tue, 6 Sep 2011 17:53:29 +0000 (12:53 -0500)] 
speed up restart speed of profiles

14 years agoFS-3543 --resolve nevermind, found it
Anthony Minessale [Tue, 6 Sep 2011 16:30:28 +0000 (11:30 -0500)] 
FS-3543 --resolve nevermind, found it

14 years agoRevert "FS-3080 --resolve only allow when not playing message"
Jeff Lenk [Tue, 6 Sep 2011 16:51:29 +0000 (11:51 -0500)] 
Revert "FS-3080 --resolve only allow when not playing message"

This reverts commit d2daa44d8cfeb65277d61f9f8070f72d748051fe.

Working on a better fix

14 years agoFS-3527 --resolve Syntax Error when using MSSQL in core
Jeff Lenk [Mon, 5 Sep 2011 19:40:49 +0000 (14:40 -0500)] 
FS-3527 --resolve Syntax Error when using MSSQL in core

14 years agocorrect labor day holiday example
Jeff Lenk [Mon, 5 Sep 2011 19:07:16 +0000 (14:07 -0500)] 
correct labor day holiday example

14 years agomod_voicemail: use vm_email as notification address if vm_notify_email isn't set...
Mathieu Rene [Mon, 5 Sep 2011 15:34:25 +0000 (17:34 +0200)] 
mod_voicemail: use vm_email as notification address if vm_notify_email isn't set (that behavior was in voicemail_leave_main but not in deliver_vm)

14 years agovs2010 reswig
Jeff Lenk [Sun, 4 Sep 2011 16:09:23 +0000 (11:09 -0500)] 
vs2010 reswig

14 years agodon't parse signals in the set_running_state function to avoid livelock situation
Anthony Minessale [Fri, 2 Sep 2011 21:59:59 +0000 (16:59 -0500)] 
don't parse signals in the set_running_state function to avoid livelock situation

14 years agoadd support for global nameseace in chat interface to bind to unhandled messages
Anthony Minessale [Fri, 2 Sep 2011 19:41:20 +0000 (14:41 -0500)] 
add support for global nameseace in chat interface to bind to unhandled messages

14 years ago[SDK] Clean up symbol visibility flags and compiler vendor handling
Stefan Knoblich [Fri, 2 Sep 2011 20:46:09 +0000 (22:46 +0200)] 
[SDK] Clean up symbol visibility flags and compiler vendor handling

Signed-off-by: Stefan Knoblich <stkn@openisdn.net>
14 years agoswigall
Brian West [Sat, 3 Sep 2011 02:03:21 +0000 (21:03 -0500)] 
swigall

14 years agoupdate doc
Anthony Minessale [Fri, 2 Sep 2011 15:12:14 +0000 (10:12 -0500)] 
update doc

14 years agotypo
Anthony Minessale [Fri, 2 Sep 2011 14:50:24 +0000 (09:50 -0500)] 
typo

14 years agoget rid of digit_action_set target and add target,bind_target params to bind_digit_action
Anthony Minessale [Fri, 2 Sep 2011 14:34:40 +0000 (09:34 -0500)] 
get rid of digit_action_set target and add target,bind_target params to bind_digit_action

14 years agovs2010 reswig
Jeff Lenk [Fri, 2 Sep 2011 02:16:22 +0000 (21:16 -0500)] 
vs2010 reswig

14 years agoFS-3532 --resolve
Anthony Minessale [Thu, 1 Sep 2011 20:10:23 +0000 (15:10 -0500)] 
FS-3532 --resolve

14 years agopass cancel_cause into enterprise_originate
Anthony Minessale [Thu, 1 Sep 2011 17:37:58 +0000 (12:37 -0500)] 
pass cancel_cause into enterprise_originate

14 years agomisplaced !
Anthony Minessale [Thu, 1 Sep 2011 17:25:08 +0000 (12:25 -0500)] 
misplaced !

14 years agoadd digit_action_set_target app that can set the target (direction of the dtmf flow...
Anthony Minessale [Thu, 1 Sep 2011 15:11:16 +0000 (10:11 -0500)] 
add digit_action_set_target app that can set the target (direction of the dtmf flow and subsequent channel who gets the events) to self or peer (bridged channel when possible)

14 years agobump to zeromq-2.1.9
Travis Cross [Thu, 1 Sep 2011 15:53:03 +0000 (15:53 +0000)] 
bump to zeromq-2.1.9

14 years agoTweak link order of some libs to fix build on gcc platforms that have ld flag "-...
Daniel Swarbrick [Thu, 1 Sep 2011 14:42:00 +0000 (16:42 +0200)] 
Tweak link order of some libs to fix build on gcc platforms that have ld flag "--as-needed" as default. Fixes FS-2873 and FS-2874

14 years agox != dw
Michal Bielicki - cypromis [Thu, 1 Sep 2011 14:36:27 +0000 (16:36 +0200)] 
x != dw

14 years agohrm
Brian West [Thu, 1 Sep 2011 08:31:47 +0000 (03:31 -0500)] 
hrm

14 years agoswigall
Brian West [Thu, 1 Sep 2011 08:22:30 +0000 (03:22 -0500)] 
swigall

14 years agoantibiotics for our latest sonus infection
Anthony Minessale [Thu, 1 Sep 2011 00:30:51 +0000 (19:30 -0500)] 
antibiotics for our latest sonus infection

14 years agoadd xferext command to sendmsg parser so you can send a list of instructions to a...
Anthony Minessale [Wed, 31 Aug 2011 20:33:53 +0000 (15:33 -0500)] 
add xferext command to sendmsg parser so you can send a list of instructions to a channel and build and extension and transfer to it from esl

14 years agoftmod_libpri: Always try to close the d-channel to avoid a possible deadlock in case...
Stefan Knoblich [Wed, 31 Aug 2011 23:45:06 +0000 (01:45 +0200)] 
ftmod_libpri: Always try to close the d-channel to avoid a possible deadlock in case something fails in the I/O module's channel open function.

Signed-off-by: Stefan Knoblich <s.knoblich@axsentis.de>
14 years agoFreeTDM: Don't ftdm_safe_free() span information in ftdm_span_destroy() if span provi...
Stefan Knoblich [Wed, 31 Aug 2011 23:35:01 +0000 (01:35 +0200)] 
FreeTDM: Don't ftdm_safe_free() span information in ftdm_span_destroy() if span provides a custom span_destroy callback.

Doing so will cause a NULL-deref segfault while removing the current span from the
global hash (cur_span->name == NULL) in ftdm_global_destroy().

Remove all the ftdm_safe_free() calls in the custom callback part of ftdm_span_destroy() and
let ftdm_global_destroy() handle that.

NOTE: Also adds a missing ftdm_safe_free(cur_span->dtmf_hangup) to ftdm_global_destroy().

Signed-off-by: Stefan Knoblich <stkn@openisdn.net>
14 years agoUpdate ChangeLog through Aug 11
Michael S Collins [Wed, 31 Aug 2011 23:36:51 +0000 (16:36 -0700)] 
Update ChangeLog through Aug 11

14 years agoUpdate ChangeLog through July 31
Michael S Collins [Wed, 31 Aug 2011 22:44:59 +0000 (15:44 -0700)] 
Update ChangeLog through July 31

14 years agono gccisms in Makefile.am please ...
Michal Bielicki - cypromis [Wed, 31 Aug 2011 22:18:44 +0000 (00:18 +0200)] 
no gccisms in Makefile.am please ...

14 years agoFS-3527 this fixes part of the problem with MSSQL
Jeff Lenk [Wed, 31 Aug 2011 21:04:20 +0000 (16:04 -0500)] 
FS-3527 this fixes part of the problem with MSSQL

14 years agoFix to allow setting a proxy properly when manually injecting notifies
dschreiber [Wed, 31 Aug 2011 20:36:20 +0000 (13:36 -0700)] 
Fix to allow setting a proxy properly when manually injecting notifies

14 years agoFix issue where mod_shout does not properly flush buffer on writing mp3 streams,...
dschreiber [Wed, 31 Aug 2011 20:35:13 +0000 (13:35 -0700)] 
Fix issue where mod_shout does not properly flush buffer on writing mp3 streams, resulting in incomplete files. TODO: Refactor as part of the while loop.

14 years agotypo
Anthony Minessale [Wed, 31 Aug 2011 18:52:21 +0000 (13:52 -0500)] 
typo

14 years agotweak behaviour on rfc2833 a tad for the sake of interop with sonus who can't stand...
Anthony Minessale [Wed, 31 Aug 2011 17:03:57 +0000 (12:03 -0500)] 
tweak behaviour on rfc2833 a tad for the sake of interop with sonus who can't stand the idea of any gaps in timestamps

14 years agoMerge branch 'master' of ssh://git.freeswitch.org:222/freeswitch
Michal Bielicki - cypromis [Wed, 31 Aug 2011 19:05:47 +0000 (21:05 +0200)] 
Merge branch 'master' of ssh://git.freeswitch.org:222/freeswitch

14 years agogetting rid of some gcc crap
Michal Bielicki - cypromis [Wed, 31 Aug 2011 19:05:37 +0000 (21:05 +0200)] 
getting rid of some gcc crap

14 years agouse system default dtmf duration instead of hardcoded value
Michael Jerris [Wed, 31 Aug 2011 18:44:48 +0000 (14:44 -0400)] 
use system default dtmf duration instead of hardcoded value

14 years agoMerge branch 'master' of ssh://git.freeswitch.org:222/freeswitch
Michal Bielicki - cypromis [Wed, 31 Aug 2011 18:34:07 +0000 (20:34 +0200)] 
Merge branch 'master' of ssh://git.freeswitch.org:222/freeswitch

14 years agofix of ldns for solaris and probably other platforms that actualy have b64_pton,...
Michal Bielicki - cypromis [Wed, 31 Aug 2011 18:33:55 +0000 (20:33 +0200)] 
fix of ldns for solaris and probably other platforms that actualy have b64_pton, thanks to math for the help

14 years agoleftovers...
Michal Bielicki - cypromis [Wed, 31 Aug 2011 15:51:15 +0000 (17:51 +0200)] 
leftovers...

14 years agoFS-3534 --resolve
Anthony Minessale [Wed, 31 Aug 2011 15:10:50 +0000 (10:10 -0500)] 
FS-3534 --resolve

14 years agoget rid of libldns strange old libtool and configure crap leftovers ...
Michal Bielicki - cypromis [Wed, 31 Aug 2011 15:10:21 +0000 (17:10 +0200)] 
get rid of libldns strange old libtool and configure crap leftovers ...

14 years agofedora fixes
Michal Bielicki - cypromis [Wed, 31 Aug 2011 15:09:16 +0000 (17:09 +0200)] 
fedora fixes

14 years agofinal fix to bootstrap.sh
Michal Bielicki - cypromis [Wed, 31 Aug 2011 15:08:11 +0000 (17:08 +0200)] 
final fix to bootstrap.sh

14 years agomod_rtmp: don't add data to the sendq if the connection's gone
Mathieu Rene [Wed, 31 Aug 2011 13:38:05 +0000 (15:38 +0200)] 
mod_rtmp: don't add data to the sendq if the connection's gone

14 years agodid not clean out installed libtool to the end
Michal Bielicki - cypromis [Wed, 31 Aug 2011 13:40:17 +0000 (15:40 +0200)] 
did not clean out installed libtool to the end

14 years agofix to bootstrap to include libldns to autoreconfed libs
Michal Bielicki - cypromis [Wed, 31 Aug 2011 12:42:53 +0000 (14:42 +0200)] 
fix to bootstrap to include libldns to autoreconfed libs

14 years agosend mark bit when resuming audio after 2833 and resume sending from write side to...
Anthony Minessale [Tue, 30 Aug 2011 20:00:07 +0000 (15:00 -0500)] 
send mark bit when resuming audio after 2833 and resume sending from write side to avoid any double writes

14 years agouse enterprise originate when fifo dial string contains a user channel
Anthony Minessale [Tue, 30 Aug 2011 16:04:14 +0000 (11:04 -0500)] 
use enterprise originate when fifo dial string contains a user channel

14 years agoadd name string for SIGNAL_DATA
Anthony Minessale [Tue, 30 Aug 2011 14:15:22 +0000 (09:15 -0500)] 
add name string for SIGNAL_DATA

14 years agoFS-3530 --resolve
Jeff Lenk [Tue, 30 Aug 2011 14:01:07 +0000 (09:01 -0500)] 
FS-3530 --resolve

14 years agoFS-3525 --resolve
Jeff Lenk [Tue, 30 Aug 2011 13:56:18 +0000 (08:56 -0500)] 
FS-3525 --resolve

14 years agowait on info dtmf parsing w and W (additional part of previous patch)
Anthony Minessale [Mon, 29 Aug 2011 18:28:02 +0000 (13:28 -0500)] 
wait on info dtmf parsing w and W (additional part of previous patch)

14 years agoadd new channel cap flag to indicate you can support queueable dtmf delay aka parsing...
Anthony Minessale [Mon, 29 Aug 2011 16:04:38 +0000 (11:04 -0500)] 
add new channel cap flag to indicate you can support queueable dtmf delay aka parsing w and W and implement it in the RTP stack and sofia endpoint

14 years agoFS-3528 --resolve
Anthony Minessale [Mon, 29 Aug 2011 15:31:41 +0000 (10:31 -0500)] 
FS-3528 --resolve

14 years agofreetdm: added documentation regarding ftdm open known issues
Moises Silva [Sat, 27 Aug 2011 04:19:09 +0000 (00:19 -0400)] 
freetdm: added documentation regarding ftdm open known issues

14 years agofix logic determining which ip to use in contact on re-invites in recovery situations...
Anthony Minessale [Fri, 26 Aug 2011 19:10:23 +0000 (14:10 -0500)] 
fix logic determining which ip to use in contact on re-invites in recovery situations or when remote ip is unknown

14 years agofix logic determining which ip to use in contact on re-invites in recovery situations...
Anthony Minessale [Fri, 26 Aug 2011 18:51:41 +0000 (13:51 -0500)] 
fix logic determining which ip to use in contact on re-invites in recovery situations or when remote ip is unknown

14 years agoignore signals instead of using a blank handler
Anthony Minessale [Fri, 26 Aug 2011 17:59:01 +0000 (12:59 -0500)] 
ignore signals instead of using a blank handler

14 years agoadjustment to 85ea402ca9b0eadedcda9c0c433fb54fb1c993e9
Anthony Minessale [Fri, 26 Aug 2011 17:07:20 +0000 (12:07 -0500)] 
adjustment to 85ea402ca9b0eadedcda9c0c433fb54fb1c993e9

14 years agolocate session even when it's hungup in script constructor
Anthony Minessale [Fri, 26 Aug 2011 13:30:15 +0000 (08:30 -0500)] 
locate session even when it's hungup in script constructor

14 years agoswigall
Anthony Minessale [Fri, 26 Aug 2011 14:50:25 +0000 (09:50 -0500)] 
swigall

14 years agochmod -x *.xml
Travis Cross [Fri, 26 Aug 2011 04:48:33 +0000 (04:48 +0000)] 
chmod -x *.xml

14 years agozero out particular flags when recovering
Anthony Minessale [Fri, 26 Aug 2011 01:21:53 +0000 (20:21 -0500)] 
zero out particular flags when recovering

14 years agoremove stray printf
Anthony Minessale [Thu, 25 Aug 2011 23:17:00 +0000 (18:17 -0500)] 
remove stray printf

14 years agoFS-3523 --resolve
Anthony Minessale [Thu, 25 Aug 2011 18:29:44 +0000 (13:29 -0500)] 
FS-3523 --resolve

14 years agoSILK windows vs2010 fix typos
Jeff Lenk [Thu, 25 Aug 2011 18:27:11 +0000 (13:27 -0500)] 
SILK windows vs2010 fix typos

14 years agore-add SILK support back for windows - part 1 - blind added 2010 support check later
Jeff Lenk [Thu, 25 Aug 2011 18:10:57 +0000 (13:10 -0500)] 
re-add SILK support back for windows - part 1 - blind added 2010 support check later

14 years agoswigall
Brian West [Thu, 25 Aug 2011 22:34:35 +0000 (17:34 -0500)] 
swigall

14 years agoSilk part two... doh
Brian West [Thu, 25 Aug 2011 22:30:25 +0000 (17:30 -0500)] 
Silk part two... doh

14 years ago FS-3486 --resolve update silk
Brian West [Thu, 25 Aug 2011 22:24:46 +0000 (17:24 -0500)] 
 FS-3486 --resolve update silk