1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-30 13:01:23 +03:00

Add support for async global requests

Normally the infamous packet_wait() synchronous call
is gone in all SSH2 client code.
This commit is contained in:
Aris Adamantiadis
2010-01-06 21:48:44 +01:00
parent 84e6aca5c5
commit ef5dc6cd2b
4 changed files with 92 additions and 21 deletions

View File

@@ -68,6 +68,8 @@ SSH_PACKET_CALLBACK(ssh_packet_channel_open_conf);
SSH_PACKET_CALLBACK(ssh_packet_channel_open_fail);
SSH_PACKET_CALLBACK(ssh_packet_channel_success);
SSH_PACKET_CALLBACK(ssh_packet_channel_failure);
SSH_PACKET_CALLBACK(ssh_request_success);
SSH_PACKET_CALLBACK(ssh_request_denied);
ssh_channel channel_new(ssh_session session);
int channel_default_bufferize(ssh_channel channel, void *data, int len,