diff options
author | Aris Adamantiadis <aris@0xbadc0de.be> | 2010-01-03 22:14:21 +0100 |
---|---|---|
committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2010-01-03 22:14:21 +0100 |
commit | 648e5d62bad63c90d6c5eca3665a1b5572307656 (patch) | |
tree | f5ec65d69167016b4ed4dc467bf26942acb1065f /libssh/packet.c | |
parent | 49de20aa5c34b86c6f1cd064d46aa5748d654b3d (diff) | |
download | libssh-648e5d62bad63c90d6c5eca3665a1b5572307656.tar.gz libssh-648e5d62bad63c90d6c5eca3665a1b5572307656.tar.xz libssh-648e5d62bad63c90d6c5eca3665a1b5572307656.zip |
Some work for async channel requests
Diffstat (limited to 'libssh/packet.c')
-rw-r--r-- | libssh/packet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libssh/packet.c b/libssh/packet.c index 6e84c70..f88fbe6 100644 --- a/libssh/packet.c +++ b/libssh/packet.c @@ -90,8 +90,8 @@ ssh_packet_callback default_packet_handlers[]= { channel_rcv_eof, //#define SSH2_MSG_CHANNEL_EOF 96 channel_rcv_close, //#define SSH2_MSG_CHANNEL_CLOSE 97 channel_rcv_request, //#define SSH2_MSG_CHANNEL_REQUEST 98 - NULL, //#define SSH2_MSG_CHANNEL_SUCCESS 99 - NULL, //#define SSH2_MSG_CHANNEL_FAILURE 100 + ssh_packet_channel_success, //#define SSH2_MSG_CHANNEL_SUCCESS 99 + ssh_packet_channel_failure, //#define SSH2_MSG_CHANNEL_FAILURE 100 }; /* XXX include selected mac size */ |