1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-08-08 19:02:06 +03:00

auth: Move ssh_auth_list to legacy functions.

This commit is contained in:
Andreas Schneider
2011-08-23 16:25:39 +02:00
parent 058bb04396
commit 2e577cecb4
4 changed files with 9 additions and 10 deletions

View File

@@ -35,6 +35,13 @@
#include <libssh/keys.h>
#include <libssh/keyfiles.h>
/* AUTH FUNCTIONS */
int ssh_auth_list(ssh_session session) {
return ssh_userauth_list(session, NULL);
}
/* BUFFER FUNCTIONS */
void buffer_free(ssh_buffer buffer){
ssh_buffer_free(buffer);
}