1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-12-02 01:17:52 +03:00

Update c++ prototypes

This commit is contained in:
Aris Adamantiadis
2010-02-02 18:30:26 +01:00
parent c97d0d1220
commit 6b703b8d6a

View File

@@ -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;
};