diff options
author | Malfurious <m@lfurio.us> | 2024-10-24 13:06:13 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2024-10-25 03:31:18 -0400 |
commit | 8455d3e9256bff8d4f74b3606347522ea6c381ca (patch) | |
tree | 80660a9a058033f475c49cc71c4f18ae7cca14ac /Keychain.h | |
parent | 6285b4d8b283fb38112ec04b1cc570a8c0c9844b (diff) | |
download | compass-8455d3e9256bff8d4f74b3606347522ea6c381ca.tar.gz compass-8455d3e9256bff8d4f74b3606347522ea6c381ca.zip |
Remove remote-host and port options
Support for remote keychains is removed, so also remove the associated
command-line options.
Signed-off-by: Malfurious <m@lfurio.us>
Diffstat (limited to 'Keychain.h')
-rw-r--r-- | Keychain.h | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -23,12 +23,12 @@ struct Credential { class Keychain {
public:
// Structors
- Keychain(std::string remoteHost, std::string port, std::string directory);
+ Keychain(std::string directory);
virtual ~Keychain();
// Open/close
static Keychain* newKeychain(std::string directory);
- static Keychain* loadKeychain(std::string remoteHost, std::string port, std::string directory);
+ static Keychain* loadKeychain(std::string directory);
void saveKeychain();
// Info/Debug
@@ -80,8 +80,6 @@ public: private:
std::map<std::string, std::vector<Credential> > credentials; // map from service name (string) onto list of credentials for that service (vector<Credential>)
- std::string remoteHost;
- std::string port;
std::string directory;
// Reset Credentials
|