summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/roaming_common.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Since r1.2 removed the use of PRI* macros, inttypes.h is no longerokan2015-01-271-2/+1
| | | | | | required. ok djm@
* Introduce digest API and use it to perform all hashing operationsdjm2014-01-091-8/+6
| | | | | | rather than calling OpenSSL EVP_Digest* directly. Will make it easier to build a reduced-feature OpenSSH without OpenSSL in future; feedback, ok markus@
* fix a couple of function definitions foo() -> foo(void)djm2013-11-031-3/+3
| | | | (-Wold-style-definition)
* fix pointer-signedness warnings from clang/llvm-3.3; "seems nice" deraadt@djm2013-07-121-2/+2
|
* fix some harmless and/or unreachable int overflows;djm2011-12-071-1/+3
| | | | reported Xi Wang, ok markus@
* delete with extreme prejudice a debug() that fired with every keypress;djm2010-01-121-3/+1
| | | | ok dtucker deraadt
* use socklen_t for getsockopt optlen parameter; reported bydjm2009-12-061-5/+5
| | | | Steve.McClellan AT radisys.com, ok dtucker@
* Do the actual suspend/resume in the client. This won't be useful untilandreas2009-10-241-1/+46
| | | | | | | the server side supports roaming. Most code from Martin Forssen, maf at appgate dot com. Some changes by me and markus@ ok markus@
* It may be necessary to retransmit some data when resuming, so add itandreas2009-06-271-1/+95
| | | | | | to a buffer when roaming is enabled. Most of this code was written by Martin Forssen, maf at appgate dot com. ok markus@
* Add tags for the benefit of the sync scriptsdtucker2009-06-211-0/+1
|
* Use debug3() instead of debug(), requested by markus@andreas2009-06-131-1/+2
| | | | ok dtucker@
* Fix warnings found by chl@ and djm@ and change roaming_atomicio'sandreas2009-06-121-7/+8
| | | | | return type to match atomicio's Diff from djm@, ok markus@
* Keep track of number of bytes read and written. Needed for upcomingandreas2009-05-281-0/+100
changes. Most code from Martin Forssen, maf at appgate dot com. ok markus@