diff options
author | milo <milo@r0ot.me> | 2010-09-29 17:45:04 +0200 |
---|---|---|
committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2010-10-02 22:51:35 +0200 |
commit | 26d40b5354d6760472127f2c16045fbbb2f12fee (patch) | |
tree | de30f65d560762a324734d48c70872fdc50fcaaa /include/libssh/libssh.h | |
parent | c4356531f78fdcf2f3b6a9861f6129eac81990f8 (diff) | |
download | libssh-26d40b5354d6760472127f2c16045fbbb2f12fee.tar.gz libssh-26d40b5354d6760472127f2c16045fbbb2f12fee.tar.xz libssh-26d40b5354d6760472127f2c16045fbbb2f12fee.zip |
Handle global requests and reverse forwarding
Diffstat (limited to 'include/libssh/libssh.h')
-rw-r--r-- | include/libssh/libssh.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h index 22957c38..0471c40c 100644 --- a/include/libssh/libssh.h +++ b/include/libssh/libssh.h @@ -193,6 +193,12 @@ enum ssh_channel_requests_e { SSH_CHANNEL_REQUEST_WINDOW_CHANGE }; +enum ssh_global_requests_e { + SSH_GLOBAL_REQUEST_UNKNOWN=0, + SSH_GLOBAL_REQUEST_TCPIP_FORWARD, + SSH_GLOBAL_REQUEST_CANCEL_TCPIP_FORWARD, +}; + enum ssh_publickey_state_e { SSH_PUBLICKEY_STATE_ERROR=-1, SSH_PUBLICKEY_STATE_NONE=0, |