diff options
author | Howard P. Logsdon <howard@hplogsdon.com> | 2014-03-07 12:14:15 -0700 |
---|---|---|
committer | Howard P. Logsdon <howard@hplogsdon.com> | 2014-03-07 12:14:15 -0700 |
commit | 9c6fab1780fc35a0e5fba231ed552034fcbe7471 (patch) | |
tree | 86741d1b1111a4d30bc1b9e63bb6416f20df30ca /Source/SPConnectionController.h | |
parent | dfa060854cd456593a5ff0c4926d9c6775fabbfc (diff) | |
download | sequelpro-9c6fab1780fc35a0e5fba231ed552034fcbe7471.tar.gz sequelpro-9c6fab1780fc35a0e5fba231ed552034fcbe7471.tar.bz2 sequelpro-9c6fab1780fc35a0e5fba231ed552034fcbe7471.zip |
Enable SSL over SSH connection configuration.
This appears to work, as I’m able to connect to mysql instances through an ssh tunnel, with ssl configuration, but I probably should wireshark the connection to determine actual network traffic.
Diffstat (limited to 'Source/SPConnectionController.h')
-rw-r--r-- | Source/SPConnectionController.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/SPConnectionController.h b/Source/SPConnectionController.h index 19c7eee3..6c52d4b0 100644 --- a/Source/SPConnectionController.h +++ b/Source/SPConnectionController.h @@ -120,6 +120,7 @@ IBOutlet NSView *socketConnectionFormContainer; IBOutlet NSView *socketConnectionSSLDetailsContainer; IBOutlet NSView *sshConnectionFormContainer; + IBOutlet NSView *sshConnectionSSLDetailsContainer; IBOutlet NSView *sshKeyLocationHelp; IBOutlet NSView *sslKeyFileLocationHelp; IBOutlet NSView *sslCertificateLocationHelp; @@ -147,6 +148,9 @@ IBOutlet NSButton *socketSSLKeyFileButton; IBOutlet NSButton *socketSSLCertificateButton; IBOutlet NSButton *socketSSLCACertButton; + IBOutlet NSButton *sslOverSSHKeyFileButton; + IBOutlet NSButton *sslOverSSHCertificateButton; + IBOutlet NSButton *sslOverSSHCACertButton; IBOutlet NSButton *connectButton; IBOutlet NSButton *testConnectButton; |