summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/clientloop.c
AgeCommit message (Expand)Author
2010-01-26rewrite ssh(1) multiplexing code to a more sensible protocol.Damien Miller
2010-01-09quell tc[gs]etattr warnings when forcing a tty (ssh -tt), since weDamien Miller
2009-11-17fix incorrect exit status when multiplexing and channel ID 0 is recycledDamien Miller
2009-10-24client_loop() must detect if the session has been suspended and resumed,Andreas Gunnarsson
2009-07-05only send SSH2_MSG_DISCONNECT if we're in compat20; from dtucker@Kevin Steves
2009-05-28Keep track of number of bytes read and written. Needed for upcomingAndreas Gunnarsson
2009-05-27Send SSH2_MSG_DISCONNECT when the client disconnects. From a largerAndreas Gunnarsson
2009-05-25Put the globals in packet.c into a struct and don't access it directlyAndreas Gunnarsson
2009-02-12support remote port forwarding with a zero listen port (-R0:...) toDamien Miller
2009-01-22make a2port() return -1 when it encounters an invalid port numberDamien Miller
2008-12-09fix typo in error messageKevin Steves
2008-12-09The ~C escape handler does not work correctly for multiplexed sessions -Damien Miller
2008-12-02we have to use the recipient's channel number (RFC 4254) forMarkus Friedl
2008-11-05add dynamic forward escape command line; ok djm@Kevin Steves
2008-11-01merge dynamic forward parsing into parse_forward(); 'i think this is OK' djm@Kevin Steves
2008-10-30don't need to #include "monitor_fdpass.h"Kevin Steves
2008-07-16rename variable first_gc -> last_gc (since it is actually the lastDamien Miller
2008-07-10sync v1 and v2 traffic accounting; add it to sshd, too; ok djm@, dtucker@Markus Friedl
2008-06-12I was coalescing expected global request confirmation replies at theDamien Miller
2008-06-12The multiplexing escape char handler commit last night introduced aDamien Miller
2008-06-12thall shalt not code past the eightieth columnDamien Miller
2008-06-12maintain an ordered queue of outstanding global requests that weDamien Miller
2008-06-12Enable ~ escapes for multiplex slave sessions; give each channelDamien Miller
2008-05-19unbreak tree by committing this bit that I missed from:Damien Miller
2008-05-09unbreakMarkus Friedl
2008-05-09tidy up session multiplexing code, moving it into its own file andDamien Miller
2008-05-09Try additional addresses when connecting to a port forward destinationDamien Miller
2008-05-08Use new channel status confirmation callback system to properly dealDamien Miller
2008-05-08Implement a channel success/failure status confirmation callbackDamien Miller
2008-02-22Allow all SSH2 packet types, including UNIMPLEMENTED to reset theDarren Tucker
2008-01-23Revert the change for bz #1307 as it causes connection aborts if an IGNOREDarren Tucker
2008-01-19fd leak on session multiplexing error path. Report and patch fromDamien Miller
2007-12-28Use the correct packet maximum sizes for remote port and agent forwarding.Darren Tucker
2007-12-28Make SSH2_MSG_UNIMPLEMENTED and SSH2_MSG_IGNORE messages reset theDarren Tucker
2007-11-03fix memory leak in process_cmdline(), patch from Jan.Pechanec AT Sun.COM;Damien Miller
2007-09-04make file descriptor passing code return an error rather than call fatal()Damien Miller
2007-08-15do NOT fall back to the trused x11 cookie if generation of an untrustedMarkus Friedl
2007-08-07bz#1232: ensure that any specified LocalCommand is executed after theDamien Miller
2007-03-20remove some bogus *p tests from charles longeauTed Unangst
2007-02-20set maximum packet and window sizes the same for multiplexed clientsDamien Miller
2007-01-21spacesKevin Steves
2006-10-11exit instead of doing a blocking tcp send if we detect a client/server timeout,Markus Friedl
2006-08-03almost entirely get rid of the culture of ".h files that include .h files"Theo de Raadt
2006-08-01move #include <stdio.h> out of includes.hKevin Steves
2006-07-26move #include <stdlib.h> out of includes.hKevin Steves
2006-07-26move #include <sys/param.h> out of includes.hKevin Steves
2006-07-25move #include <sys/time.h> out of includes.hKevin Steves
2006-07-22move #include <string.h> out of includes.hKevin Steves
2006-07-17move #include <unistd.h> out of includes.hKevin Steves
2006-07-11move #include <errno.h> out of includes.h; ok markus@Kevin Steves