summaryrefslogtreecommitdiffstats
path: root/include
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 /include
parent77baa2df156e60b8516820049eb34937490d765b (diff)
downloadlibssh-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.h3
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,