From 8455d3e9256bff8d4f74b3606347522ea6c381ca Mon Sep 17 00:00:00 2001 From: Malfurious Date: Thu, 24 Oct 2024 13:06:13 -0400 Subject: Remove remote-host and port options Support for remote keychains is removed, so also remove the associated command-line options. Signed-off-by: Malfurious --- Keychain.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'Keychain.h') diff --git a/Keychain.h b/Keychain.h index 8219424..de0d760 100644 --- a/Keychain.h +++ b/Keychain.h @@ -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 > credentials; // map from service name (string) onto list of credentials for that service (vector) - std::string remoteHost; - std::string port; std::string directory; // Reset Credentials -- cgit v1.2.3