summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* fix some signed/unsigned integer type mismatches in formatdjm2015-10-151-2/+2
* add ssh_config CertificateFile option to explicitly listdjm2015-09-241-7/+58
* sync -Q in usage() to SYNOPSIS; since it's drastically shorter,jmc2015-09-111-6/+4
* Update usage to match man page.dtucker2015-09-111-2/+2
* expand %i in ControlPath to UID; bz#2449djm2015-09-111-3/+4
* Plug minor memory leaks when options are used more than once. bz#2182,dtucker2015-09-041-7/+8
* add a debug2() right before DNS resolution; it's a place wheredjm2015-09-041-1/+2
* Allow ssh_config and sshd_config kex parameters options be prefixeddjm2015-07-301-17/+18
* Sync usage with SYNOPSISmillert2015-07-201-3/+3
* Remove pattern length argument from match_pattern_list(),djm2015-05-041-5/+3
* debug log missing DISPLAY environment when X11 forwardingdjm2015-04-171-1/+5
* Allow "ssh -Q protocol-version" to list supported SSH protocoldjm2015-03-031-1/+8
* UpdateHostKeys fixes:djm2015-02-201-1/+7
* Reduce use of <sys/param.h> and transition to <limits.h> throughout.deraadt2015-01-201-4/+4
* when hostname canonicalisation is enabled, try to parse hostnamesdjm2015-01-161-5/+72
* move authfd.c and its tentacles to the new buffer/key API;djm2015-01-141-2/+9
* reorder hostbased key attempts to better match the defaultdjm2015-01-081-17/+17
* Nuke more obvious #include duplications.krw2014-11-181-2/+1
* tweak previous;jmc2014-10-091-2/+2
* Tweak config reparsing with host canonicalisationdjm2014-10-081-19/+61
* reflect stdio-forward ("ssh -W host:port ...") failures in exit status.djm2014-07-171-1/+9
* Add support for Unix domain socket forwarding. A remote TCP portmillert2014-07-151-25/+37
* Add a %C escape sequence for LocalCommand and ControlPath that expandsdjm2014-07-031-8/+36
* fix remote fwding with same listen port but different listen addressmarkus2014-06-271-2/+4
* don't fatal() when hostname canonicalisation fails with adjm2014-06-241-5/+9
* make compiling against OpenSSL optional (make OPENSSL=no);markus2014-04-291-3/+19
* bz#2205: avoid early hostname lookups unless canonicalisation is enabled;djm2014-02-261-6/+24
* reparse ssh_config and ~/.ssh/config if hostname canonicalisation changesdjm2014-02-231-56/+94
* delay lowercasing of hostname until right before hostnamedjm2014-02-041-2/+2
* replace most bzero with explicit_bzero, except a few that cna be memsettedu2014-01-311-6/+6
* don't forget to load Ed25519 certs toodjm2013-12-291-12/+16
* support ed25519 keys (hostkeys and user identities) using the public domainmarkus2013-12-061-4/+13
* - put -Q in the right placejmc2013-11-261-5/+5
* improve -Q usage and such. One usage change is that the option is nowderaadt2013-11-251-10/+10
* Add a new protocol 2 transport cipher "chacha20-poly1305@openssh.com"djm2013-11-211-2/+4
* Output the effective values of Ciphers, MACs and KexAlgorithms whendtucker2013-11-071-4/+4
* fix crash when using ProxyCommand caused by previous commit - was callingdjm2013-10-251-2/+4
* fix bug introduced in hostname canonicalisation commit: don't try todjm2013-10-241-3/+5
* commentdjm2013-10-231-1/+2
* rearrange check to reduce diff against -portabledjm2013-10-171-2/+4
* one I missed in previous: s/isation/ization/djm2013-10-161-6/+6
* s/canonicalise/canonicalize/ for consistency with existing spelling,djm2013-10-161-16/+16
* Implement client-side hostname canonicalisation to allow an explicitdjm2013-10-161-11/+162
* whitespace at EOL; pointed out by markus@djm2013-10-141-4/+4
* refactor client config code a little:djm2013-10-141-19/+9
* add a "Match" keyword to ssh_config that allows matching on hostname,djm2013-10-141-13/+10
* daemonise backgrounded (ControlPersist'ed) multiplexing master to ensuredjm2013-07-251-1/+2
* More useful error message on missing current user in /etc/passwddjm2013-07-201-2/+2
* set TCP nodelay for connections started with -N; bz#2124 ok dtucker@djm2013-07-121-1/+6
* bye, bye xfree(); ok markus@djm2013-05-171-23/+21