Displaying 3 results from an estimated 3 matches for "process_mux_new_session".
2015 Jun 17
5
[Bug 2414] New: ControlMaster directive should be ignored on Cygwin
https://bugzilla.mindrot.org/show_bug.cgi?id=2414
Bug ID: 2414
Summary: ControlMaster directive should be ignored on Cygwin
Product: Portable OpenSSH
Version: -current
Hardware: Other
OS: Cygwin on NT/2k
Status: NEW
Severity: enhancement
Priority: P5
Component: ssh
Assignee:
2016 Aug 17
4
[Portable OpenSSH] hang up during login after OpenSSH 7.3 upgrade
...: mux_master_read_cb: channel 1 packet type 0x10000004 len 4
debug2: process_mux_alive_check: channel 1: alive check
debug3: mux_client_request_alive: done pid = 1261
debug3: mux_client_request_session: session request sent
debug3: mux_master_read_cb: channel 1 packet type 0x10000002 len 41
debug2: process_mux_new_session: channel 1: request tty 1, X 0, agent 0, subsys 0, term "linux", cmd "", env 0
debug3: process_mux_new_session: got fds stdin 6, stdout 7, stderr 8
debug1: channel 2: new [client-session]
debug2: process_mux_new_session: channel_new: 2 linked to control channel 1
debug2: channel...
2010 Jan 14
1
ssh(1) multiplexing rewrite
...odes for MUX_C_OPEN_FORWARD and MUX_C_CLOSE_FORWARD */
+#define MUX_FWD_LOCAL 1
+#define MUX_FWD_REMOTE 2
+#define MUX_FWD_DYNAMIC 3
+
+static void mux_session_confirm(int, void *);
+
+static int process_mux_master_hello(struct mux_master_state *, Channel *,
+ Buffer *, Buffer *);
+static int process_mux_new_session(struct mux_master_state *, Channel *,
+ Buffer *, Buffer *);
+static int process_mux_alive_check(struct mux_master_state *, Channel *,
+ Buffer *, Buffer *);
+static int process_mux_terminate(struct mux_master_state *, Channel *,
+ Buffer *, Buffer *);
+static int process_mux_open_forward(...