aboutsummaryrefslogtreecommitdiff
path: root/libssh/legacy.c
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2010-08-09 22:05:33 +0200
committerAris Adamantiadis <aris@0xbadc0de.be>2010-08-09 22:05:33 +0200
commit714edcb8d9534d30e9bb7ddb5d7cb3844e3a464c (patch)
treefdcbf5924ad872ce43572a45e66a5a07bccb07d7 /libssh/legacy.c
parenta6b6a6177562519808b57084b4290f8db555a594 (diff)
downloadlibssh-714edcb8d9534d30e9bb7ddb5d7cb3844e3a464c.tar.gz
libssh-714edcb8d9534d30e9bb7ddb5d7cb3844e3a464c.tar.xz
libssh-714edcb8d9534d30e9bb7ddb5d7cb3844e3a464c.zip
Moved content from deprecated.c to legacy.c
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 5147d04..b2ecc0e 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;
+}