From 8b39f25ee75d7db1eff68aaa71b92d3282e4c054 Mon Sep 17 00:00:00 2001 From: abhibeckert Date: Mon, 29 Sep 2008 09:49:36 +0000 Subject: tag release candidate 2 of 0.9.2 release --- trunk/SSHTunnel_old.h | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100755 trunk/SSHTunnel_old.h (limited to 'trunk/SSHTunnel_old.h') diff --git a/trunk/SSHTunnel_old.h b/trunk/SSHTunnel_old.h new file mode 100755 index 00000000..f70d3a52 --- /dev/null +++ b/trunk/SSHTunnel_old.h @@ -0,0 +1,41 @@ +/* + +SSHTunnel.h + +Original code by tynsoe.org, Copyright 2002 +Modified by Lorenz Textor for use with Sequel Pro + +*/ + +#import + +@interface SSHTunnel : NSObject +{ + BOOL shouldStop; + NSTask *task; + NSPipe *stdErrPipe; + NSString *status; + + NSDictionary *tunnelArguments; +} + +// initialization +- (id)init; + +// Getting tunnels informations +- (BOOL)isRunning; +- (NSString *)status; + +// starting & stopping the tunnel +- (void)startTunnel; +- (void)startTunnelWithArguments:(NSDictionary *)args; +- (void)stopTunnel; +- (void)launchTunnel:(NSArray*)arguments; +- (void)stdErr:(NSNotification*)aNotification; +- (id)authenticate:(NSScriptCommand *)command; +- (id)handleQuitScriptCommand:(NSScriptCommand *)command; + +// deallocation +- (void) dealloc; + +@end -- cgit v1.2.3