Displaying 3 results from an estimated 3 matches for "mux_fwd_local".
2012 May 03
5
[PATCH/RFC 0/6] New mux client request to list open tcp forwardings.
These patches implement a new mux client request to list the currently opened
TCP forwardings. It also removes some todos regarding keeping the list
of forwardings in the options up-to-date.
Bert Wesarg (6):
attach the forwarding type to struct Forward
merge local and remote forward lists
generate unique ids for forwardings to be used for identification
remove closed forwardings from
2010 Jan 14
1
ssh(1) multiplexing rewrite
...S_PERMISSION_DENIED.
+
+5. Requesting establishment of port forwards
+
+A client may request the master to establish a port forward:
+
+ uint32 MUX_C_OPEN_FORWARD
+ uint32 forwarding type
+ string listen host
+ string listen port
+ string connect host
+ string connect port
+
+forwarding type may be MUX_FWD_LOCAL, MUX_FWD_REMOTE, MUX_FWD_DYNAMIC.
+
+A server may reply with a MUX_S_OK, a MUX_S_PERMISSION_DENIED or a
+MUX_S_FAILURE.
+
+5. Requesting closure of port forwards
+
+A client may request the master to establish a port forward:
+
+ uint32 MUX_C_OPEN_FORWARD
+ uint32 forwarding type
+ string listen ho...
2011 Jan 13
2
[PATCH] mux: update PROTOCOL.mux and fix error messages on client side
...ly with MUX_S_FAILURE).
A client may request the master to establish a port forward:
- uint32 MUX_C_OPEN_FORWARD
+ uint32 MUX_C_CLOSE_FWD
uint32 request id
- uint32 forwarding type
string listen host
string listen port
string connect host
string connect port
-forwarding type may be MUX_FWD_LOCAL, MUX_FWD_REMOTE, MUX_FWD_DYNAMIC.
-
A server may reply with a MUX_S_OK, a MUX_S_PERMISSION_DENIED or a
MUX_S_FAILURE.
-6. Requesting stdio forwarding
+7. Requesting stdio forwarding
A client may request the master to establish a stdio forwarding:
@@ -153,7 +152,7 @@ The contents of "r...