summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/ssh.c
AgeCommit message (Expand)Author
2010-02-08replace our obsolete smartcard code with PKCS#11.Markus Friedl
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-12-20When passing user-controlled options with arguments to other programs,Philip Guenthe
2009-10-28Allow to set the rdomain in ssh/sftp/scp/sshd and ssh-keyscan.Reyk Floeter
2009-10-24Request roaming to be enabled if UseRoaming is true and the serverAndreas Gunnarsson
2009-07-02allow for long home dir paths (bz #1615). ok deraadtDarren Tucker
2009-03-17pass correct argv[0] to openlog(); ok djm@Markus Friedl
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-11-01merge dynamic forward parsing into parse_forward(); 'i think this is OK' djm@Kevin Steves
2008-10-09add -y to usage();Jason McIntyre
2008-10-08Add -y option to force logging via syslog rather than stderr.Damien Miller
2008-09-11only send eow and no-more-sessions requests to openssh 5 and newer;Markus Friedl
2008-07-02When forking after authentication ("ssh -f") with ExitOnForwardFailureDamien Miller
2008-06-12keyword expansion for localcommand. ok djm@Darren Tucker
2008-06-12thal shalt not code past the eightieth columnDamien Miller
2008-06-12maintain an ordered queue of outstanding global requests that weDamien Miller
2008-06-10Add a no-more-sessions@openssh.com global request extension that theDamien Miller
2008-05-09dingo stole my diff hunkDamien Miller
2008-05-09tidy up session multiplexing code, moving it into its own file andDamien 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-01-19ignore SIGPIPE in multiplex client mode - we can receive this if theDamien Miller
2007-11-03avoid errno trashing in signal handler; ok dtuckerTheo de Raadt
2007-11-03Use xstrdup/xfree when saving pwname and pwdir; ok deraadt@Darren Tucker
2007-11-03bz #1377: getpwuid results were being clobbered by another getpw* callTheo de Raadt
2007-10-29Make LocalCommand work for Protocol 1 too; ok djm@Darren Tucker
2007-10-29Plug tiny mem leaks in ControlPath and ProxyCommand option processing; ok djm@Darren Tucker
2007-09-04make ssh(1)'s ConnectTimeout option apply to both the TCP connection andDamien Miller
2007-09-04make file descriptor passing code return an error rather than call fatal()Damien Miller
2007-08-07bz#1232: ensure that any specified LocalCommand is executed after theDamien Miller
2007-06-14when waiting for the multiplex exit status, read until the master endDamien Miller
2007-06-14handle EINTR when waiting for mux exit status properlyDamien Miller
2007-06-12improved exit message from multiplex slave sessions; bz #1262Damien Miller
2007-06-12Add "-K" flag for ssh to set GSSAPIAuthentication=yes andDamien Miller
2007-06-12fix slave exit value when a control master goes away without passing theDamien Miller
2007-01-03spacesKevin Steves
2006-10-06sys/resource.h needs sys/time.h; prompted by brad@Damien 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-22move #include <string.h> out of includes.hKevin Steves
2006-07-17move #include <unistd.h> out of includes.hKevin Steves
2006-07-12move #include <stddef.h> out of includes.hKevin Steves
2006-07-12move #include <netdb.h> out of includes.h; ok djm@Kevin Steves
2006-07-11need <errno.h> here also (it's also included in <openssl/err.h>)Kevin Steves
2006-07-11cast asterisk field precision argument to int to remove warning;Kevin Steves