diff options
author | Malfurious <m@lfurio.us> | 2024-10-25 03:34:18 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2024-10-25 03:34:18 -0400 |
commit | a86c2daf3d9958c838c55950a53b4a1d6d99f3d1 (patch) | |
tree | 80660a9a058033f475c49cc71c4f18ae7cca14ac /Help.cpp | |
parent | 512aa4c77b3dc0d72db713a9215ff65a98a99ec3 (diff) | |
parent | 8455d3e9256bff8d4f74b3606347522ea6c381ca (diff) | |
download | compass-a86c2daf3d9958c838c55950a53b4a1d6d99f3d1.tar.gz compass-a86c2daf3d9958c838c55950a53b4a1d6d99f3d1.zip |
Merge branch 'remove-network'
* remove-network:
Remove remote-host and port options
Remove Socket class
Diffstat (limited to '')
-rw-r--r-- | Help.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -52,9 +52,7 @@ void Help::dispGeneral() { std::cout << "-user <username> Used to disambiguate credentials if lookups return more than one" << std::endl;
std::cout << " Also used to specify a username value for new or updated credentials" << std::endl;
std::cout << "-pass <password> Used to specify a password value for new or updated credentials" << std::endl;
- std::cout << "-rh <address> Used to specify a remote host to connect to if keychain is on another machine" << std::endl;
- std::cout << "-pt <port> Port on remote host to connect to" << std::endl;
- std::cout << "-dr <path> Directory to look for, or put, keychain in. If -rh is set, this refers to the remote machine" << std::endl;
+ std::cout << "-dr <path> Directory to look for, or put, keychain in" << std::endl;
std::cout << "-cn <number> Used to disambiguate credentials if lookups return more than one" << std::endl;
std::cout << "-ml <length> Password Gen Option: max-length for generated string" << std::endl;
std::cout << "-ns Password Gen Option: set this if no special chars should be used" << std::endl;
|