1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2026-01-06 14:21:55 +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,

View File

@@ -25,6 +25,7 @@
#include "libssh/packet.h"
#include "libssh/pcap.h"
#include "libssh/auth.h"
#include "libssh/channels.h"
typedef struct ssh_kbdint_struct* ssh_kbdint;
@@ -82,7 +83,7 @@ struct ssh_session_struct {
int dh_handshake_state;
enum ssh_auth_service_state_e auth_service_state;
enum ssh_auth_state_e auth_state;
enum ssh_channel_request_state_e global_req_state;
ssh_string dh_server_signature; //information used by dh_handshake.
KEX server_kex;
KEX client_kex;