diff options
author | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-06-17 23:53:00 +0200 |
---|---|---|
committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-06-17 23:53:00 +0200 |
commit | cf482ae3bfb8492d996cfc9e036f5086ff69eed4 (patch) | |
tree | 6f9ef588bdcaa8834006efea72d1cbe197a1ff6e /include/libssh | |
parent | 916958a2bb4be50f8562719119c143ba74fb803c (diff) | |
download | libssh-cf482ae3bfb8492d996cfc9e036f5086ff69eed4.tar.gz libssh-cf482ae3bfb8492d996cfc9e036f5086ff69eed4.tar.xz libssh-cf482ae3bfb8492d996cfc9e036f5086ff69eed4.zip |
Begin of asynchronous SSH message parsing
Diffstat (limited to 'include/libssh')
-rw-r--r-- | include/libssh/priv.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/libssh/priv.h b/include/libssh/priv.h index 68f0e18..f344ced 100644 --- a/include/libssh/priv.h +++ b/include/libssh/priv.h @@ -722,6 +722,10 @@ int ssh_handle_packets(SSH_SESSION *session); /* match.c */ int match_hostname(const char *host, const char *pattern, unsigned int len); +/* messages.c */ + +void message_handle(SSH_SESSION *session, u32 type); + /* log.c */ #define _enter_function(sess) \ |