Displaying 5 results from an estimated 5 matches for "mux_s_permission_denied".
2011 Jan 13
2
[PATCH] mux: update PROTOCOL.mux and fix error messages on client side
...OTOCOL.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
uint32 client request id
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
2011 Feb 07
0
[PATCH] PROTOCOL.mux: fix typo
...PROTOCOL.mux b/PROTOCOL.mux
index 3d6f818..5074993 100644
--- a/PROTOCOL.mux
+++ b/PROTOCOL.mux
@@ -149,7 +149,7 @@ The client then sends its standard input and output file descriptors
The contents of "reserved" are currently ignored.
-A server may reply with a MUX_S_SESSION_OPEED, a MUX_S_PERMISSION_DENIED
+A server may reply with a MUX_S_SESSION_OPENED, a MUX_S_PERMISSION_DENIED
or a MUX_S_FAILURE.
8. Status messages
--
1.7.3.3.1603.g7f137
2011 May 06
1
[PATCH/trivial] Fix numbering in PROTOCOL.mux
diff --git i/PROTOCOL.mux w/PROTOCOL.mux
index 05bb146..b53af19 100644 PROTOCOL.mux
--- i/PROTOCOL.mux
+++ w/PROTOCOL.mux
@@ -180,7 +180,7 @@ The MUX_S_PERMISSION_DENIED and MUX_S_FAILURE
include a reason:
uint32 client request id
string reason
-9. Protocol numbers
+10. Protocol numbers
#define MUX_MSG_HELLO 0x00000001
#define MUX_C_NEW_SESSION 0x10000002
2010 Jan 14
1
ssh(1) multiplexing rewrite
...rminal 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 exit value
+
+The client sho...