aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2010-02-02 18:30:26 +0100
committerAris Adamantiadis <aris@0xbadc0de.be>2010-02-02 18:30:26 +0100
commit6b703b8d6a11a8a9c42937cfb0873710b3c69e07 (patch)
tree93d1dd3e5977159b2368c6623c36b7d839116b44
parentc97d0d122012302ee4e3b9e778bd54fe7aca6035 (diff)
downloadlibssh-6b703b8d6a11a8a9c42937cfb0873710b3c69e07.tar.gz
libssh-6b703b8d6a11a8a9c42937cfb0873710b3c69e07.tar.xz
libssh-6b703b8d6a11a8a9c42937cfb0873710b3c69e07.zip
Update c++ prototypes
-rw-r--r--include/libssh/libsshpp.hpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/libssh/libsshpp.hpp b/include/libssh/libsshpp.hpp
index 9be035e8..ae841d72 100644
--- a/include/libssh/libsshpp.hpp
+++ b/include/libssh/libsshpp.hpp
@@ -54,6 +54,17 @@ public:
int userauthAutopubkey(){
return ssh_userauth_autopubkey(session,NULL);
}
+ int getAuthList();
+ int disconnect();
+ const char *getDisconnectMessage();
+ const char *getError();
+ int getErrorCode();
+ socket_t getSocket();
+ const char *getIssueBanner();
+ int getOpensshVersion();
+ int getVersion();
+ int isServerKnown();
+
private:
ssh_session session;
};