diff options
| author | Aris Adamantiadis <aris@0xbadc0de.be> | 2010-01-24 21:03:03 +0100 |
|---|---|---|
| committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2010-01-24 21:03:03 +0100 |
| commit | 758df265822928744ab20cec8e4929236b6b41e9 (patch) | |
| tree | 42e10f836c0fbc57fb771f765caf616a69967777 /include/libssh/channels.h | |
| parent | 6ae558b5410c0ebec6d9e3147e3b6eb6f0430f72 (diff) | |
| download | libssh-758df265822928744ab20cec8e4929236b6b41e9.tar.gz libssh-758df265822928744ab20cec8e4929236b6b41e9.tar.xz libssh-758df265822928744ab20cec8e4929236b6b41e9.zip | |
Made parts of SSH asynchronous (inc kex1)
Diffstat (limited to 'include/libssh/channels.h')
| -rw-r--r-- | include/libssh/channels.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/libssh/channels.h b/include/libssh/channels.h index ae45f269..5e4901ba 100644 --- a/include/libssh/channels.h +++ b/include/libssh/channels.h @@ -78,5 +78,9 @@ uint32_t ssh_channel_new_id(ssh_session session); ssh_channel ssh_channel_from_local(ssh_session session, uint32_t id); int channel_write_common(ssh_channel channel, const void *data, uint32_t len, int is_stderr); +#ifdef WITH_SSH1 +SSH_PACKET_CALLBACK(ssh_packet_data1); +SSH_PACKET_CALLBACK(ssh_packet_close1); +#endif #endif /* CHANNELS_H_ */ |
