aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2011-08-25 16:50:44 +0300
committerAris Adamantiadis <aris@0xbadc0de.be>2011-09-02 11:42:59 +0300
commitf9dad9ad682639f8cd0d2599ef4bb42300e095d7 (patch)
tree0f707dce51199c486758f62a2d96b9ff32ea418d /include
parent7363b29427023bb2bbcec0bb1783e869015ff664 (diff)
downloadlibssh-f9dad9ad682639f8cd0d2599ef4bb42300e095d7.tar.gz
libssh-f9dad9ad682639f8cd0d2599ef4bb42300e095d7.tar.xz
libssh-f9dad9ad682639f8cd0d2599ef4bb42300e095d7.zip
channels: made all channel requests nonblocking
Diffstat (limited to 'include')
-rw-r--r--include/libssh/channels.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libssh/channels.h b/include/libssh/channels.h
index 7ceb4403..36dfe52f 100644
--- a/include/libssh/channels.h
+++ b/include/libssh/channels.h
@@ -42,6 +42,7 @@ enum ssh_channel_request_state_e {
enum ssh_channel_state_e {
SSH_CHANNEL_STATE_NOT_OPEN = 0,
+ SSH_CHANNEL_STATE_OPENING,
SSH_CHANNEL_STATE_OPEN_DENIED,
SSH_CHANNEL_STATE_OPEN,
SSH_CHANNEL_STATE_CLOSED
@@ -66,7 +67,6 @@ struct ssh_channel_struct {
ssh_buffer stderr_buffer;
void *userarg;
int version;
- int blocking;
int exit_status;
enum ssh_channel_request_state_e request_state;
ssh_channel_callbacks callbacks;