search for: rchan

Displaying 20 results from an estimated 117 matches for "rchan".

Did you mean: chan
2000 Aug 15
0
Experimental -R support patch for openssh client
...* This called after client has received SSH2_MSG_GLOBAL_REQUEST/ + * "forwarded-tcpip". + * Checks if creating the channel is ok. And connects to required host. + * returns new channel if OK or NULL for failure. + */ +Channel* +client_forwarded_tcpip_request(const char *request_type, int rchan, + int rwindow, int rmaxpack) +{ + Channel* c = NULL; + int sock; + char *connected_address; /* Remote address that is listening for the + connection */ + int connected_port; /* Remote port connected */ + + char* client_address; /* Client that connected to conne...
2005 Feb 02
0
two small-ish optimizations (death by a thousand cuts)
...r *decoder); @@ -776,6 +768,54 @@ decoder->private_->metadata_filter_ids_count = 0; } +/* Undo any special channel coding */ +static inline void read_channel_coding(FLAC__StreamDecoder *decoder) +{ + register FLAC__int32 left, right; + register unsigned i; + register FLAC__int32 *lchan, *rchan; + switch(decoder->private_->frame.header.channel_assignment) { + case FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT: + /* do nothing */ + break; + case FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE: + FLAC__ASSERT(decoder->private_->frame.header.channels == 2); + lchan = &(decoder->privat...
2011 Oct 22
1
Creating a reverse socket often (not always) fails.
...aced it down this far and could use some further pointers if possible. Seems an obscure problem at this stage. Thank you. //creating reverse connection, creates a socket but subsequently conecting to it fails. debug1: channel 1: new [port listener] debug1: server_input_channel_open: ctype session rchan 0 win 24576 max 32768 debug1: input_session_request debug1: channel 2: new [server-session] debug1: session_new: init debug1: session_new: session 0 debug1: server_input_channel_open: confirm session debug1: server_input_channel_req: channel 2 request shell reply 0 debug1: session_by_channel: sessi...
2000 Aug 23
1
Protocol 2 remote forwarding patch
...num_permitted_opens++; } } +/* Jarno Huuskonen: + * This gets called after ssh client has received + * SSH2_MSG_GLOBAL_REQUEST type "forwarded-tcpip". + * + * returns new channel if OK or NULL for failure. + */ +Channel* +client_forwarded_tcpip_request(const char *request_type, int rchan, + int rwindow, int rmaxpack) +{ + Channel* c = NULL; + int sock; + char *listen_address; /* Remote (server) address that is listening + for the connection */ + int listen_port; + char* originator_address; /* Address of the client connecting to +...
2005 Jun 20
2
app_valetparking.c
Since www.bkw.org seems not to exist anymore (getting response from some hosting provider), does anyone happend to have a copy of app_valetparking.c from www.bkw.org - the one that should work with * stable 1.0.X ? If so please contact me. One that can be downloaded from www.loligo.com dosn't compile with 1.0.X, and SuperValletParking (www.asterlink.com/svp/) seems to be for * HEAD
2005 Jun 20
1
Re: app_valetparking.c for * STABLE (1.0.X)
Nope ! This is the one that tries to include PRE 1.0.X header file <parking.h>. It cannot compile on * 1.0.X (I have tried also to include <features.h> instead of <parking.h> (as far as I know features.h is successor to parking.h), but still without results). Thanks anyway. Nenad > > Try this > >> Since www.bkw.org seems not to exist anymore (getting
2001 Feb 10
3
Protocol 2 remote forwarding patch
...num_permitted_opens++; + } +} + +/* Jarno Huuskonen: + * This gets called after ssh client has received + * SSH2_MSG_GLOBAL_REQUEST type "forwarded-tcpip". + * + * returns new channel if OK or NULL for failure. + */ +Channel* +client_forwarded_tcpip_request(const char *request_type, int rchan, + int rwindow, int rmaxpack) +{ + Channel* c = NULL; + int sock; + char *listen_address; /* Remote (server) address that is listening + for the connection */ + int listen_port; + char* originator_address; /* Address of the client connecting to + listen_address *...
2008 Jul 26
0
Still no joy: no X11 protocols
...dev/null debug2: x11_get_proto: /usr/bin/xauth -f /tmp/ssh-ZCkLTd4136/xauthfile list :0.0 2>/dev/null debug1: Requesting X11 forwarding with authentication spoofing. debug2: channel 0: request x11-req confirm 0 debug2: client_session2_setup: id 0 .... debug1: client_input_channel_open: ctype x11 rchan 2 win 65536 max 16384 debug1: client_request_x11: request from 127.0.0.1 55024 debug2: fd 9 setting O_NONBLOCK debug3: fd 9 is O_NONBLOCK debug1: channel 1: new [x11] debug1: confirm x11 debug2: channel 1: rcvd eof .... debug2: channel 1: garbage collecting debug1: channel 1: free: x11, nchannels 2...
2006 Sep 07
12
Multiple (multiplexed) simultaneous ssh connections - Cygwin bug?
Hello, ? I need to make many (>50) ssh connections from linux to cygwin at the same time. Using Windows 2000 Server (OpenSSH_4.3p2, OpenSSL 0.9.8b and updated cygwin) and Linux RHEL4 (OpenSSH_3.9p1, OpenSSL 0.9.7a). ? It's been difficult to optimize many simultaneous connections. Here were some issues: 1.?????? On Windows XP/Professional, Microsoft intentionally cripples the TCP/IP stack.
2001 Oct 24
2
disable features
...op.c,v retrieving revision 1.84 diff -u -r1.84 clientloop.c --- clientloop.c 11 Oct 2001 15:24:00 -0000 1.84 +++ clientloop.c 22 Oct 2001 18:23:38 -0000 @@ -1042,6 +1042,7 @@ quit_pending = 1; } +#ifdef WITH_TCPFWD static Channel * client_request_forwarded_tcpip(const char *request_type, int rchan) { @@ -1078,7 +1079,9 @@ xfree(listen_address); return c; } +#endif /* WITH_TCPFWD */ +#ifdef WITH_X11FWD static Channel* client_request_x11(const char *request_type, int rchan) { @@ -1118,7 +1121,9 @@ c->force_drain = 1; return c; } +#endif /* WITH_X11FWD */ +#ifdef WITH_AGENT...
2008 Sep 23
0
X11 forwarding fails from Mac OS 10.5.5
...ient built from the openssh.org OpenSSH_5.1p1 sources on Mac OS 10.5.5 (Darwin Kernel Version 9.5.0: Wed Sep 3 11:29:43 PDT 2008; root:xnu-1228.7.58~1/RELEASE_I386 i386), I get the following error when trying to launch an xterm in a remote ssh session: debug1: client_input_channel_open: ctype x11 rchan 3 win 2097152 max 16384 debug1: client_request_x11: request from 127.0.0.1 54813 /tmp/launch-LP0nSk/: unknown host. (nodename nor servname provided, or not known) debug1: failure x11 X connection to localhost:14.0 broken (explicit kill or server shutdown). When I use the ssh client provided by Mac...
2010 Mar 09
1
sshd version OpenSSH_5.4p1 fails on OpenBSD 4.2 GENERIC macppc
...g server with sudo /opt/sbin/sshd -p 2222 -d, my ssh client can connect, but the session is closed by server as soon as it is started: [...] User child is on pid 10318 debug1: Entering interactive session for SSH2. debug1: server_init_dispatch_20 debug1: server_input_channel_open: ctype session rchan 0 win 1048576 max 16384 debug1: input_session_request debug1: channel 0: new [server-session] debug1: session_new: session 0 debug1: session_open: channel 0 debug1: session_open: session 0: link with channel 0 debug1: server_input_channel_open: confirm session debug1: server_input_global_request:...
2016 Jun 01
2
Problem with Firefox and SSH/browser
...nnot open Firefox though ssh. ssh server is 7.2 and ssh client (running Xorg) is Fedora 23. Firefox does not open. I've tried a lot of methods, even adding xauth cookie, and for example: firefox --no-remote --no-xshm debug3: receive packet: type 90 debug1: client_input_channel_open: ctype x11 rchan 2 win 65536 max 16384 debug1: client_request_x11: request from 127.0.0.1 59181 debug2: fd 7 setting O_NONBLOCK debug3: fd 7 is O_NONBLOCK debug1: channel 1: new [x11] debug1: confirm x11 debug3: send packet: type 91 debug3: receive packet: type 90 debug1: client_input_channel_open: ctype x11 rchan...
2001 Jul 23
1
2.9p2: sshd -6, port fwd of ipv4 fails
...ll IPv4 are represented as mapped addresses, port forwarding will not work; just running plain ol' IPv4 fixes this of course. The server error, when forwarding from the client '143:localhost:143' and connecting to localhost 143 is: debug1: server_input_channel_open: ctype direct-tcpip rchan 1 win 20480 max 2048 debug1: server_request_direct_tcpip: originator 127.0.0.1 port 1340, target 127.0.0.1 port 143 connect_to 127.0.0.1: unknown host (Address family for hostname not supported) debug1: server_input_channel_open: failure direct-tcpip The problem is that the connecting clients migh...
2009 Feb 17
2
Idea: reverse socks proxy
Hi, Just a usecase that I'm sure has been covered before but just in case its not an openssh solution would be very helpful. I was trying to install software on a server that was firewalled so no outbound http connections would work. I was also tunnelling via another server. Outbound ssh connections also were a convenient option. What would have been nice would be a remote version of
2001 Oct 23
2
PAM problem - sshd segfault on Solaris
...serauth_request: try method password debug1: PAM Password authentication accepted for user "wyodlows" Accepted password for wyodlows from a.b.c.d port 45214 ssh2 debug1: Entering interactive session for SSH2. debug1: server_init_dispatch_20 debug1: server_input_channel_open: ctype session rchan 0 win 65536 max 32768 debug1: input_session_request debug1: channel 0: new [server-session] debug1: session_new: init debug1: session_new: session 0 debug1: session_open: channel 0 debug1: session_open: session 0: link with channel 0 debug1: server_input_channel_open: confirm session debug2: callba...
2008 May 30
1
"ERR sshd: error: no more sessions" issue
...29 14:43:07 DEBUG sshd[534]: debug2: channel 98: is dead May 29 14:43:07 DEBUG sshd[534]: debug2: channel 98: garbage collecting May 29 14:43:07 DEBUG sshd[534]: debug1: channel 98: free: server-session, nchannels 99 May 29 14:43:07 DEBUG sshd[534]: debug1: server_input_channel_open: ctype session rchan 1409 win 30000 max 33976 May 29 14:43:07 DEBUG sshd[534]: debug1: input_session_request May 29 14:43:07 DEBUG sshd[534]: debug1: channel 98: new [server-session] May 29 14:43:07 DEBUG sshd[534]: debug1: session_new: session 98 May 29 14:43:07 DEBUG sshd[534]: debug1: session_open: channel 98 May...
2000 Oct 02
3
still sftp-server problems with Irix?
.... SFTP connections with SSH 2.3.0 (Windows) die right out. Similar configuration and the same version works fine in Red Hat Linux 6.2. This is probably related to 'sftp' thread 7-10 days ago. The error messages captured in debug mode: --- debug1: server_input_channel_open: ctype session rchan 1 win 100000 max 8192 debug1: open session debug1: channel 2: new [server-session] debug1: session_new: session 1 (2 used) debug1: session_open: channel 2 debug1: session_open: session 1: link with channel 2 debug1: confirm session debug2: callback start debug1: session_by_channel: session 1 channe...
2013 Aug 08
1
Issue with OpenSSH remote forwarding of dynamic ports
...t:81 debug1: Updating allowed port 60014 for forwarding to host localhost port 81 So far, so good! Connecting to port 60013 worked fine, causing the client to connect to localhost:80 as requested, with the following debug output: quad:~>debug1: client_input_channel_open: ctype forwarded-tcpip rchan 5 win 2097152 max 32768 debug1: client_request_forwarded_tcpip: listen localhost port 0, originator ::1 port 60153 debug2: fd 9 setting O_NONBLOCK debug1: connect_next: host localhost ([::1]:80) in progress, fd=9 debug2: fd 9 setting TCP_NODELAY debug3: fd 9 is O_NONBLOCK debug3: fd 9 is O_NONBLOCK...
2000 Aug 07
1
X11-Forwarding OpenSSH 2.1.1p4 problem
...it id 0 arg 0 debug: Requesting X11 forwarding with authentication spoofing. debug: channel request 0: shell debug: client_set_session_ident: id 0 debug: callback done debug: channel 0: open confirm rwindow 0 rmax 32768 debug: channel 0: rcvd adjust 16384 debug: client_input_channel_open: ctype x11 rchan 2 win 4096 max 2048 connect /usr/spool/sockets/X11/0: No such file or directory debug: failure x11 debug: callback start debug: client_input_channel_req: rtype exit-status reply 0 debug: callback done debug: channel 0: rcvd eof debug: channel 0: output open -> drain debug: channel 0: rcvd close...