summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/channels.c
AgeCommit message (Expand)Author
2010-11-24remove a debug() that pollutes stderr on client connecting to a serverDamien Miller
2010-08-05Fix a trio of bugs in the local/remote window calculation for datagramDamien Miller
2010-07-13s/timing_safe_cmp/timingsafe_bcmp/gDamien Miller
2010-07-13implement a timing_safe_cmp() function to compare memory without leakingDamien Miller
2010-06-25bz#1750: fix requirement for /dev/null inside ChrootDirectory forDamien Miller
2010-06-25bz#1327: remove hardcoded limit of 100 permitopen clauses and portDamien Miller
2010-05-14Pause the mux channel while waiting for reply from aynch callbacks.Damien Miller
2010-01-30fake local addr:port when stdio fowarding as some servers (Tectia atDamien Miller
2010-01-26rewrite ssh(1) multiplexing code to a more sensible protocol.Damien Miller
2010-01-11Add a 'netcat mode' (ssh -W). This connects stdio on the client to a singleDarren Tucker
2010-01-09Remove RoutingDomain from ssh since it's now not needed. It can be replacedDarren Tucker
2009-11-11fix race condition in x11/agent channel allocation: don't read afterMarkus Friedl
2009-11-10Set close-on-exec on various descriptors so they don't get leaked toDarren Tucker
2009-10-28Allow to set the rdomain in ssh/sftp/scp/sshd and ssh-keyscan.Reyk Floeter
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-22oops! I committed the wrong version of the Channel->path diff,Damien Miller
2009-01-22make Channel->path an allocated string, saving a few bytes here andDamien Miller
2009-01-14support SOCKS4A protocol, from dwmw2 AT infradead.org via bz#1482;Damien Miller
2009-01-01call channel destroy callbacks on receipt of open failure messages.Damien Miller
2008-12-09channel_print_adm_permitted_opens() should deal with all the printingKevin Steves
2008-12-02s/remote_id/id/ to be more consistent with other code; ok djm@Markus Friedl
2008-11-11for sshd -T print 'permitopen any' vs. 'permitopen' for case of noKevin Steves
2008-11-01fix some typos in log messages; ok djm@Kevin Steves
2008-07-16this loop index should be automatic, not staticDamien Miller
2008-07-13use struct sockaddr_storage instead of struct sockaddr for accept(2)Damien Miller
2008-07-12unbreak; move clearing of cctx struct to before first useDamien Miller
2008-07-10missing bzero; from mickey; ok djm@Markus Friedl
2008-06-16Rename the isatty argument to is_tty so we don't shadow isatty(3).Darren Tucker
2008-06-15don't call isatty() on a pty master, instead pass a flag down toDamien Miller
2008-06-12The multiplexing escape char handler commit last night introduced aDamien Miller
2008-06-12Enable ~ escapes for multiplex slave sessions; give each channelDamien Miller
2008-06-10Add extended test mode (-T) and connection parameters for test mode (-C).Darren Tucker
2008-05-09error-fd race: don't enable the error fd in the select bitmaskMarkus Friedl
2008-05-09Try additional addresses when connecting to a port forward destinationDamien Miller
2008-05-08Implement a channel success/failure status confirmation callbackDamien Miller
2008-05-08avoid extra malloc/copy/free when receiving data over the net;Markus Friedl
2008-04-02avoid possible hijacking of x11-forwarded connections (back out 1.183)Markus Friedl
2008-01-19When we added support for specified bind addresses for port forwards, weDamien Miller
2007-12-27Add a small helper function to consistently handle the EAI_SYSTEM errorDarren Tucker
2007-06-25Correct test for window updates every three packets; prevents sendingDarren Tucker
2007-06-11send 'window adjust' messages every tree packets and do not waitMarkus Friedl
2007-01-03spacesKevin Steves
2006-12-12bz #1019: some ssh.com versions apparently can't cope with the remote portDamien Miller
2006-08-29normalise some inconsistent (but harmless) NULL pointer checksDamien Miller
2006-08-03almost entirely get rid of the culture of ".h files that include .h files"Theo de Raadt
2006-08-01clean extra spacesKevin Steves
2006-08-01move #include <stdio.h> out of includes.hKevin Steves
2006-07-26move #include <stdlib.h> out of includes.hKevin Steves
2006-07-25move #include <sys/time.h> out of includes.hKevin Steves