1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-30 13:01:23 +03:00

Socket connect callback working...

Still need to make sure the connect syscall is correctly
called
This commit is contained in:
Aris Adamantiadis
2009-11-30 23:44:40 +01:00
parent 76d6838223
commit 92a50f731c
7 changed files with 169 additions and 12 deletions

View File

@@ -50,7 +50,7 @@ typedef void (*ssh_callback_int) (int code, void *user);
*/
typedef int (*ssh_callback_data) (const void *data, size_t len, void *user);
typedef void (*ssh_callback_int_int) (void *user, int code, int errno_code);
typedef void (*ssh_callback_int_int) (int code, int errno_code, void *user);
typedef int (*ssh_message_callback) (ssh_session, ssh_message message, void *user);
typedef int (*ssh_channel_callback_int) (ssh_channel channel, int code, void *user);