aboutsummaryrefslogtreecommitdiff
path: root/libssh/packet.c
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2009-12-27 00:06:34 +0100
committerAris Adamantiadis <aris@0xbadc0de.be>2009-12-27 00:06:34 +0100
commit8d1faa0dbc61cd5f27d541367656ac4b15d5c6f5 (patch)
tree08b1ec2db46612d662d19530791cf9369a19eb66 /libssh/packet.c
parent77baa2df156e60b8516820049eb34937490d765b (diff)
downloadlibssh-8d1faa0dbc61cd5f27d541367656ac4b15d5c6f5.tar.gz
libssh-8d1faa0dbc61cd5f27d541367656ac4b15d5c6f5.tar.xz
libssh-8d1faa0dbc61cd5f27d541367656ac4b15d5c6f5.zip
Made channel_open_session partially asynchronous
Diffstat (limited to 'libssh/packet.c')
-rw-r--r--libssh/packet.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libssh/packet.c b/libssh/packet.c
index 45ae3602..6e84c70b 100644
--- a/libssh/packet.c
+++ b/libssh/packet.c
@@ -82,8 +82,8 @@ ssh_packet_callback default_packet_handlers[]= {
NULL, //#define SSH2_MSG_REQUEST_FAILURE 82
NULL, NULL, NULL, NULL, NULL, NULL, NULL, // 83-89
NULL, //#define SSH2_MSG_CHANNEL_OPEN 90
- NULL, //#define SSH2_MSG_CHANNEL_OPEN_CONFIRMATION 91
- NULL, //#define SSH2_MSG_CHANNEL_OPEN_FAILURE 92
+ ssh_packet_channel_open_conf, //#define SSH2_MSG_CHANNEL_OPEN_CONFIRMATION 91
+ ssh_packet_channel_open_fail, //#define SSH2_MSG_CHANNEL_OPEN_FAILURE 92
channel_rcv_change_window, //#define SSH2_MSG_CHANNEL_WINDOW_ADJUST 93
channel_rcv_data, //#define SSH2_MSG_CHANNEL_DATA 94
channel_rcv_data, //#define SSH2_MSG_CHANNEL_EXTENDED_DATA 95