aboutsummaryrefslogtreecommitdiff
path: root/libssh/legacy.c
diff options
context:
space:
mode:
Diffstat (limited to 'libssh/legacy.c')
-rw-r--r--libssh/legacy.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libssh/legacy.c b/libssh/legacy.c
index 5147d046..b2ecc0e6 100644
--- a/libssh/legacy.c
+++ b/libssh/legacy.c
@@ -25,6 +25,7 @@
*/
#include <libssh/libssh.h>
+#include <libssh/server.h>
#include <libssh/buffer.h>
void buffer_free(ssh_buffer buffer){
@@ -231,3 +232,8 @@ char *string_to_char(ssh_string str){
return ssh_string_to_char(str);
}
+int ssh_accept(ssh_session session) {
+ (void) session;
+
+ return SSH_OK;
+}