diff options
author | jakob <jakob@eggerapps.at> | 2010-01-28 19:50:02 +0000 |
---|---|---|
committer | jakob <jakob@eggerapps.at> | 2010-01-28 19:50:02 +0000 |
commit | f2a6d2a88de4b492e3c22200c8dc99f2ef475e4a (patch) | |
tree | 3a0c892429218dcd1736e3542678fa469ffe3ae6 /Source/SPSSHTunnel.h | |
parent | 862a431ebf1571f09890f43702e50fdc43b13415 (diff) | |
download | sequelpro-f2a6d2a88de4b492e3c22200c8dc99f2ef475e4a.tar.gz sequelpro-f2a6d2a88de4b492e3c22200c8dc99f2ef475e4a.tar.bz2 sequelpro-f2a6d2a88de4b492e3c22200c8dc99f2ef475e4a.zip |
- removed two occurances of runModalForWindow: when asking questions for the SSH-helper (see #357)
Diffstat (limited to 'Source/SPSSHTunnel.h')
-rw-r--r-- | Source/SPSSHTunnel.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Source/SPSSHTunnel.h b/Source/SPSSHTunnel.h index 1a061619..836611f3 100644 --- a/Source/SPSSHTunnel.h +++ b/Source/SPSSHTunnel.h @@ -67,6 +67,10 @@ enum spsshtunnel_password_modes NSInteger localPort; NSInteger localPortFallback; NSInteger connectionState; + + BOOL isAnswerAvailable; + NSCondition *answerAvailableCondition; + NSString *currentKeyName; } - (id) initToHost:(NSString *) theHost port:(NSInteger) thePort login:(NSString *) theLogin tunnellingToPort:(NSInteger) targetPort onHost:(NSString *) targetHost; @@ -88,6 +92,7 @@ enum spsshtunnel_password_modes - (void) workerGetResponseForQuestion:(NSString *)theQuestion; - (NSString *) getPasswordForQuery:(NSString *)theQuery verificationHash:(NSString *)theHash; - (void) workerGetPasswordForQuery:(NSString *)theQuery; -- (IBAction) closeSheet:(id)sender; +- (IBAction) closeSSHQuestionSheet:(id)sender; +- (IBAction) closeSSHPasswordSheet:(id)sender; @end |