Displaying 3 results from an estimated 3 matches for "mux_s_ok".
2011 Jan 13
2
[PATCH] mux: update PROTOCOL.mux and fix error messages on client side
...mux
+++ b/PROTOCOL.mux
@@ -28,7 +28,7 @@ defined.
To open a new multiplexed session, a client may send the following
request:
- uint32 MUX_C_MSG_NEW_SESSION
+ uint32 MUX_C_NEW_SESSION
uint32 request id
string reserved
bool want tty flag
@@ -99,7 +99,7 @@ The server will reply with one of MUX_S_OK or MUX_S_PERMISSION_DENIED.
A client may request the master to establish a port forward:
- uint32 MUX_C_OPEN_FORWARD
+ uint32 MUX_C_OPEN_FWD
uint32 request id
uint32 forwarding type
string listen host
@@ -118,24 +118,23 @@ For dynamically allocated listen port the server replies with
u...
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
.... "terminal type" is generally set to the value of
+$TERM. zero or more environment strings may follow the command.
+
+The client then sends its standard input, output and error file
+descriptors (in that order) using Unix domain socket control messages.
+
+The server will then reply with MUX_S_OK, MUX_S_PERMISSION_DENIED
+or MUX_S_FAILURE.
+
+Once the server has received the fds, it will respond with MUX_S_OK
+indicating that the session is up. The client now waits for the
+session to end. When it does, the server will send an exit status
+message:
+
+ uint32 MUX_S_EXIT_MESSAGE
+ uint32 exi...