summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/sshconnect.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Free host on exit path. Patch from markus at blueflash.cc, ok djm@dtucker2019-05-031-1/+2
* dup stdout/in for proxycommand=-, otherwise stdout might bemarkus2019-02-271-3/+11
* Save connection timeout and restore for 2nd and subsequent attempts,dtucker2019-02-011-2/+3
* Accept the host key fingerprint as a synonym for "yes" when acceptingdtucker2019-01-241-8/+11
* convert sshconnect.c to new packet APIdjm2019-01-191-22/+1
* begin landing remaining refactoring of packet parsing API, starteddjm2019-01-191-1/+4
* move client/server SSH-* banners to buffers under ssh->kex and factordjm2018-12-271-180/+8
* Fix inverted logic for redirecting ProxyCommand stderr to /dev/null.dtucker2018-11-181-3/+5
* redirect stderr of ProxyCommands to /dev/null when ssh is started withdjm2018-11-161-5/+32
* struct sockaddr_storage is guaranteed to be large enough, no need to checkflorian2018-10-151-5/+1
* add CASignatureAlgorithms option for the client, allowing it to specifydjm2018-09-201-4/+13
* Now that ssh can't be setuid, remove the original_real_uid anddtucker2018-07-271-3/+1
* Fix typo in comment. From Alexandru Iacob via github.dtucker2018-07-191-2/+2
* Deprecate UsePrivilegedPort now that support for running ssh(1)dtucker2018-07-191-14/+10
* Remove support for running ssh(1) setuid and fatal if attempted.dtucker2018-07-181-25/+3
* remove legacy key emulation layer; ok djm@markus2018-07-111-6/+6
* client: switch to sshbuf API; ok djm@markus2018-07-091-3/+3
* lots of typos in comments/docs. Patch from Karsten Weiss after checkingdjm2018-04-101-2/+2
* Add experimental support for PQC XMSS keys (Extended Hash-Based Signatures)markus2018-02-231-2/+3
* Add missing braces.dtucker2018-02-231-2/+3
* Add BindInterface ssh_config directive and -B command-line argumentdjm2018-02-231-21/+121
* constify some private key-related functions; based ondjm2018-02-101-3/+3
* ssh_free checks for and handles NULL args, remove NULL checks from remainingdtucker2018-02-071-3/+2
* Add missing braces; fixes 'write: Socket is not connected' error in ssh.stsp2018-01-231-2/+3
* Drop compatibility hacks for some ancient SSH implementations, includingdjm2018-01-231-4/+1
* try harder to preserve errno during ssh_connect_direct() to make thedjm2018-01-231-5/+12
* don't accept junk after "yes" or "no" responses to hostkey prompts.djm2017-12-061-5/+6
* Add monotime_ts and monotime_tv that return monotonic timespec anddtucker2017-11-251-2/+2
* Revert commitid: gJtIN6rRTS3CHy9b.djm2017-09-141-43/+6
* refactor channels.cdjm2017-09-121-16/+22
* Expand ssh_config's StrictModes option with two new settings:djm2017-09-031-12/+18
* identify the case where SSHFP records are missing but other DNS RRdjm2017-09-011-6/+43
* remove post-SSHv1 removal dead code from rsa.c and merge thedjm2017-07-011-2/+1
* switch sshconnect.c from (slightly abused) select() to poll();djm2017-06-241-91/+61
* use HostKeyAlias if specified instead of hostname for matching hostdjm2017-06-241-2/+4
* switch sshconnect.c to modern APIs; ok djm@markus2017-05-301-12/+15
* switch from Key typedef with struct sshkey; ok djm@markus2017-05-301-11/+11
* remove unused variabledjm2017-05-011-3/+1
* remove KEY_RSA1djm2017-04-301-2/+1
* remove compat20/compat13/compat15 variablesdjm2017-04-301-23/+9
* remove options.protocol and client Protocol configuration knobdjm2017-04-301-39/+10
* unifdef WITH_SSH1djm2017-04-301-6/+1
* Plug descriptor leaks of auth_sock. From jjelen at redhat.com viadtucker2017-03-101-1/+3
* Add MAXIMUM(), MINIMUM(), and ROUNDUP() to misc.h, then use those definitionsderaadt2016-09-121-3/+2
* fd leaks; report Qualys Security Advisory team; ok deraadt@markus2016-01-141-1/+2
* remove roaming support; ok djm@markus2016-01-141-4/+3
* add cast to make -Werror cleandjm2015-11-201-2/+3
* ban ConnectionAttempts=0, it makes no sense and would causedjm2015-11-191-1/+3
* print host certificate contents at debug leveldjm2015-11-191-4/+28
* Add an AddKeysToAgent client option which can be set to 'yes', 'no',jcs2015-11-151-1/+29