diff options
author | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-12-27 00:06:34 +0100 |
---|---|---|
committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-12-27 00:06:34 +0100 |
commit | 8d1faa0dbc61cd5f27d541367656ac4b15d5c6f5 (patch) | |
tree | 08b1ec2db46612d662d19530791cf9369a19eb66 /include | |
parent | 77baa2df156e60b8516820049eb34937490d765b (diff) | |
download | libssh-8d1faa0dbc61cd5f27d541367656ac4b15d5c6f5.tar.gz libssh-8d1faa0dbc61cd5f27d541367656ac4b15d5c6f5.tar.xz libssh-8d1faa0dbc61cd5f27d541367656ac4b15d5c6f5.zip |
Made channel_open_session partially asynchronous
Diffstat (limited to 'include')
-rw-r--r-- | include/libssh/channels.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/libssh/channels.h b/include/libssh/channels.h index 6e3bb285..cd91793c 100644 --- a/include/libssh/channels.h +++ b/include/libssh/channels.h @@ -46,6 +46,9 @@ struct ssh_channel_struct { int exit_status; }; +SSH_PACKET_CALLBACK(ssh_packet_channel_open_conf); +SSH_PACKET_CALLBACK(ssh_packet_channel_open_fail); + void channel_handle(ssh_session session, int type); ssh_channel channel_new(ssh_session session); int channel_default_bufferize(ssh_channel channel, void *data, int len, |