Lines Matching full:rchan
1689 int rchan, u_int rwindow, u_int rmaxpack) in client_request_forwarded_tcpip() argument
1727 (r = sshbuf_put_u32(b, rchan)) != 0 || in client_request_forwarded_tcpip()
1749 const char *request_type, int rchan) in client_request_forwarded_streamlocal() argument
1770 client_request_x11(struct ssh *ssh, const char *request_type, int rchan) in client_request_x11() argument
1808 client_request_agent(struct ssh *ssh, const char *request_type, int rchan) in client_request_agent() argument
1896 u_int rchan; in client_input_channel_open() local
1901 (r = sshpkt_get_u32(ssh, &rchan)) != 0 || in client_input_channel_open()
1906 debug("client_input_channel_open: ctype %s rchan %d win %d max %d", in client_input_channel_open()
1907 ctype, rchan, rwindow, rmaxpack); in client_input_channel_open()
1910 c = client_request_forwarded_tcpip(ssh, ctype, rchan, rwindow, in client_input_channel_open()
1913 c = client_request_forwarded_streamlocal(ssh, ctype, rchan); in client_input_channel_open()
1915 c = client_request_x11(ssh, ctype, rchan); in client_input_channel_open()
1917 c = client_request_agent(ssh, ctype, rchan); in client_input_channel_open()
1923 c->remote_id = rchan; in client_input_channel_open()
1939 (r = sshpkt_put_u32(ssh, rchan)) != 0 || in client_input_channel_open()