summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/opacket.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* more OPENSSL=no fixes; ok dtucker@djm2015-04-271-2/+6
|
* avoid more fatal/exit in the packet.c paths that ssh-keyscandjm2015-01-301-16/+33
| | | | uses; feedback and "looks good" markus@
* avoid fatal() calls in packet codedjm2015-01-281-2/+23
| | | | | makes ssh-keyscan more reliable against server failures ok dtucker@ markus@
* update packet.c & isolate, introduce struct sshmarkus2015-01-191-0/+277
a) switch packet.c to buffer api and isolate per-connection info into struct ssh b) (de)serialization of the state is moved from monitor to packet.c c) the old packet.c API is implemented in opacket.[ch] d) compress.c/h is removed and integrated into packet.c with and ok djm@