summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/channels.c
AgeCommit message (Collapse)Author
2003-05-11make channel_new() strdup the 'remote_name' (not the caller); ok theoMarkus Friedl
2003-04-14avoid hardcoded SOCK_xx; with itojun@; should allow ssh over SCTPMarkus Friedl
2003-04-08rename log() into logit() to avoid name conflict. markus ok, from netbsdJun-ichiro itojun Hagino
2003-03-05fix memory leaks; from dlheine@suif.Stanford.EDU/CLOUSEAU; ok djm@Markus Friedl
2003-01-10hush socket() errors, except last. Fixes mindrot bug #408; ok markus@Damien Miller
2003-01-01move big output buffer messages to debug2Markus Friedl
2002-12-13cleanup debug messages, more useful information for the client user.Markus Friedl
2002-09-17don't quit while creating X11 listening socket.Jun-ichiro itojun Hagino
http://mail-index.netbsd.org/current-users/2002/09/16/0005.html got from portable. markus ok
2002-09-13remove use of SO_LINGER, it should not be needed. error checkKevin Steves
SO_REUSEADDR. fixup comments. ok markus@
2002-09-09signed vs unsigned from -pedantic; ok henning@Markus Friedl
2002-07-04blah blah minor nothing as i read and re-read and re-read...Theo de Raadt
2002-06-26limit # of channels to 10000Markus Friedl
2002-06-24move channel counter to u_intMarkus Friedl
2002-06-23tcode is u_intMarkus Friedl
2002-06-23display, screen, row, col, xpixel, ypixel are u_int; markus okTheo de Raadt
2002-06-10move creation of agent socket to session.c; no need for uidswappingMarkus Friedl
in channel.c.
2002-06-09use tab not spaces (|unexpand)Markus Friedl
2002-04-22request reply (success/failure) for -R style fwd in protocol v2,Markus Friedl
depends on ordered replies. fixes http://bugzilla.mindrot.org/show_bug.cgi?id=215; ok provos@
2002-03-25don't send stderr data after EOF, accept this from older known (broken)Markus Friedl
sshd servers only, fixes http://bugzilla.mindrot.org/show_bug.cgi?id=179
2002-03-04off by one; thanks to joost@pine.nlMarkus Friedl
2002-02-27remove unneeded casts in [gs]etsockopt(); ok markus@Kevin Steves
2002-02-24disable Nagle in connect_to() and channel_post_port_listener() (portKevin Steves
forwarding endpoints). the intention is to preserve the on-the-wire appearance to applications at either end; the applications can then enable TCP_NODELAY according to their requirements. ok markus@
2002-02-14increase the SSH v2 window size to 4 packets. comsumes a littleMarkus Friedl
bit more memory for slow receivers but increases througput.
2002-02-06channel_new never returns NULL, mouring@; ok djm@Markus Friedl
2002-02-05merge channel_request() into channel_request_start()Markus Friedl
2002-02-03generic callbacks are not really used, remove andMarkus Friedl
add a callback for msg of type SSH2_MSG_CHANNEL_OPEN_CONFIRMATION ok djm@
2002-02-03remove unused channel_input_channel_requestMarkus Friedl
2002-01-27add X11UseLocalhost; ok markus@Kevin Steves
2002-01-24add set_nodelay() to set TCP_NODELAY on a socket (prep for nagle tuning).Kevin Steves
no nagle changes just yet; ok djm@ markus@
2002-01-21cleanup channels faster if the are empty and we are in drain-state; ok deraadt@Markus Friedl
2002-01-16wrapper for channel_setup_fwd_listenerMarkus Friedl
2002-01-14remove function pointers for events, remove chan_init*; ok provos@Markus Friedl
2002-01-09replace buffer_consume(b, buffer_len(b)) with buffer_clear(b); ok provos@Markus Friedl
2002-01-09merge channel_pre_open_15/channel_pre_open_20; ok provos@Markus Friedl
2002-01-05fix hanging x11 channels for rejected cookies (e.g. XAUTHORITY=/dev/null xbiff)Markus Friedl
bug #36, based on patch from djast@cs.toronto.edu
2001-12-29remove unneeded casts and some char->u_char cleanup; ok markus@Kevin Steves
2001-12-28remove plen from the dispatch fn. it's no longer used.Markus Friedl
2001-12-28packet_read* no longer return the packet length, since it's not used.Markus Friedl
2001-12-28s/packet_done/packet_check_eom/ (end-of-message); ok djm@Markus Friedl
2001-12-27get rid of packet_integrity_check, use packet_done() instead.Markus Friedl
2001-12-20Conformance fix: we should send failing packet sequence number whenDamien Miller
responding with a SSH_MSG_UNIMPLEMENTED message. Spotted by yakk@yakk.dot.net; ok markus@
2001-12-20setup x11 listen socket for just one connect if the client requests so.Markus Friedl
(v2 only, but the openssh client does not support this feature).
2001-12-19basic KNF done while i was looking for something elseTheo de Raadt
2001-12-08use only one path to X11 UNIX domain socket vs. an array of pathsKevin Steves
to try. report from djast@cs.toronto.edu. ok markus@
2001-12-06disable nagle for X11 fake server and client TCPs. from netbsd.Kevin Steves
ok markus@
2001-12-06strncpy->strlcpy. remaining strncpy's are necessary. ok markus@Kevin Steves
2001-12-06shutdown(sock, SHUT_RDWR) not needed here; ok markus@Kevin Steves
2001-12-05minor KNFTheo de Raadt
2001-12-05make it compile with more strict prototype checkingJun-ichiro itojun Hagino
2001-11-29sshd X11 fake server will now listen on localhost by default:Kevin Steves
$ echo $DISPLAY localhost:12.0 $ netstat -an|grep 6012 tcp 0 0 127.0.0.1.6012 *.* LISTEN tcp6 0 0 ::1.6012 *.* LISTEN sshd_config gatewayports=yes can be used to revert back to the old behavior. will control this with another option later. ok markus@