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 /libssh/channels.c | |
parent | 916958a2bb4be50f8562719119c143ba74fb803c (diff) | |
download | libssh-cf482ae3bfb8492d996cfc9e036f5086ff69eed4.tar.gz libssh-cf482ae3bfb8492d996cfc9e036f5086ff69eed4.tar.xz libssh-cf482ae3bfb8492d996cfc9e036f5086ff69eed4.zip |
Begin of asynchronous SSH message parsing
Diffstat (limited to 'libssh/channels.c')
-rw-r--r-- | libssh/channels.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libssh/channels.c b/libssh/channels.c index d637ee1c..3b36299d 100644 --- a/libssh/channels.c +++ b/libssh/channels.c @@ -542,6 +542,8 @@ static void channel_rcv_request(SSH_SESSION *session) { leave_function(); return; } + /* TODO call message_handle since it handles channel requests as messages */ + /* *but* reset buffer before !! */ ssh_log(session, SSH_LOG_PACKET, "Unknown request %s", request); SAFE_FREE(request); |