Created
November 25, 2014 14:07
-
-
Save bararchy/7ecdb89111be07fb89ba to your computer and use it in GitHub Desktop.
C SSH
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <libssh/libssh.h> | |
#include <libssh/server.h> | |
#include <libssh/callbacks.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <stdio.h> | |
/* some def */ | |
int main () | |
{ | |
int sshbind; | |
sshbind = ssh_bind_new(); | |
int session; | |
session = ssh_new(); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment