summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssherr.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Revise hostkeys@openssh.com hostkey learning extension.djm2015-02-161-1/+3
| | | | | | | | | | The client will not ask the server to prove ownership of the private halves of any hitherto-unseen hostkeys it offers to the client. Allow UpdateHostKeys option to take an 'ask' argument to let the user manually review keys offered. ok markus@
* avoid more fatal/exit in the packet.c paths that ssh-keyscandjm2015-01-301-1/+5
| | | | uses; feedback and "looks good" markus@
* avoid fatal() calls in packet codedjm2015-01-281-1/+5
| | | | | makes ssh-keyscan more reliable against server failures ok dtucker@ markus@
* New buffer API; the first installment of the conversion/replacementdjm2014-04-301-0/+131
of OpenSSH's internals to make them usable as a standalone library. This includes a set of wrappers to make it compatible with the existing buffer API so replacement can occur incrementally. With and ok markus@ Thanks also to Ben Hawkes, David Tomaschik, Ivan Fratric, Matthew Dempsky and Ron Bowes for a detailed review.