OpenBSD CVS

CVS log for src/usr.bin/ssh/Attic/roaming_common.c


[BACK] Up to [local] / src / usr.bin / ssh

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.14, Thu Jan 14 16:17:40 2016 UTC (8 years, 4 months ago) by markus
Branch: MAIN
CVS Tags: HEAD
Changes since 1.13: +1 -1 lines
FILE REMOVED

remove roaming support; ok djm@

Revision 1.13 / (download) - annotate - [select for diffs], Tue Jan 27 12:54:06 2015 UTC (9 years, 4 months ago) by okan
Branch: MAIN
CVS Tags: OPENBSD_5_8_BASE, OPENBSD_5_8, OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.12: +1 -2 lines
Diff to previous 1.12 (colored) to selected 1.5 (colored)

Since r1.2 removed the use of PRI* macros, inttypes.h is no longer
required.

ok djm@

Revision 1.12 / (download) - annotate - [select for diffs], Thu Jan 9 23:20:00 2014 UTC (10 years, 4 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6, OPENBSD_5_5_BASE, OPENBSD_5_5
Changes since 1.11: +6 -8 lines
Diff to previous 1.11 (colored) to selected 1.5 (colored)

Introduce digest API and use it to perform all hashing operations
rather than calling OpenSSL EVP_Digest* directly. Will make it easier
to build a reduced-feature OpenSSH without OpenSSL in future;
feedback, ok markus@

Revision 1.11 / (download) - annotate - [select for diffs], Sun Nov 3 10:37:19 2013 UTC (10 years, 6 months ago) by djm
Branch: MAIN
Changes since 1.10: +3 -3 lines
Diff to previous 1.10 (colored) to selected 1.5 (colored)

fix a couple of function definitions foo() -> foo(void)
(-Wold-style-definition)

Revision 1.10 / (download) - annotate - [select for diffs], Fri Jul 12 00:19:59 2013 UTC (10 years, 10 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_5_4_BASE, OPENBSD_5_4
Changes since 1.9: +2 -2 lines
Diff to previous 1.9 (colored) to selected 1.5 (colored)

fix pointer-signedness warnings from clang/llvm-3.3; "seems nice" deraadt@

Revision 1.9 / (download) - annotate - [select for diffs], Wed Dec 7 05:44:38 2011 UTC (12 years, 5 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_5_3_BASE, OPENBSD_5_3, OPENBSD_5_2_BASE, OPENBSD_5_2, OPENBSD_5_1_BASE, OPENBSD_5_1
Changes since 1.8: +3 -1 lines
Diff to previous 1.8 (colored) to selected 1.5 (colored)

fix some harmless and/or unreachable int overflows;
reported Xi Wang, ok markus@

Revision 1.8 / (download) - annotate - [select for diffs], Tue Jan 12 00:59:29 2010 UTC (14 years, 4 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_5_0_BASE, OPENBSD_5_0, OPENBSD_4_9_BASE, OPENBSD_4_9, OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7
Changes since 1.7: +1 -3 lines
Diff to previous 1.7 (colored) to selected 1.5 (colored)

delete with extreme prejudice a debug() that fired with every keypress;
ok dtucker deraadt

Revision 1.7 / (download) - annotate - [select for diffs], Sun Dec 6 23:53:45 2009 UTC (14 years, 5 months ago) by djm
Branch: MAIN
Changes since 1.6: +5 -5 lines
Diff to previous 1.6 (colored) to selected 1.5 (colored)

use socklen_t for getsockopt optlen parameter; reported by
Steve.McClellan AT radisys.com, ok dtucker@

Revision 1.6 / (download) - annotate - [select for diffs], Sat Oct 24 11:22:37 2009 UTC (14 years, 7 months ago) by andreas
Branch: MAIN
Changes since 1.5: +46 -1 lines
Diff to previous 1.5 (colored)

Do the actual suspend/resume in the client. This won't be useful until
the server side supports roaming.
Most code from Martin Forssen, maf at appgate dot com. Some changes by
me and markus@
ok markus@

Revision 1.5 / (download) - annotate - [selected], Sat Jun 27 09:32:43 2009 UTC (14 years, 11 months ago) by andreas
Branch: MAIN
CVS Tags: OPENBSD_4_6_BASE, OPENBSD_4_6
Changes since 1.4: +95 -1 lines
Diff to previous 1.4 (colored)

It may be necessary to retransmit some data when resuming, so add it
to a buffer when roaming is enabled.
Most of this code was written by Martin Forssen, maf at appgate dot com.
ok markus@

Revision 1.4 / (download) - annotate - [select for diffs], Sun Jun 21 09:04:03 2009 UTC (14 years, 11 months ago) by dtucker
Branch: MAIN
Changes since 1.3: +1 -0 lines
Diff to previous 1.3 (colored) to selected 1.5 (colored)

Add  tags for the benefit of the sync scripts

Revision 1.3 / (download) - annotate - [select for diffs], Sat Jun 13 11:55:39 2009 UTC (14 years, 11 months ago) by andreas
Branch: MAIN
Changes since 1.2: +2 -1 lines
Diff to previous 1.2 (colored) to selected 1.5 (colored)

Use debug3() instead of debug(), requested by markus@
ok dtucker@

Revision 1.2 / (download) - annotate - [select for diffs], Fri Jun 12 20:43:22 2009 UTC (14 years, 11 months ago) by andreas
Branch: MAIN
Changes since 1.1: +8 -7 lines
Diff to previous 1.1 (colored) to selected 1.5 (colored)

Fix warnings found by chl@ and djm@ and change roaming_atomicio's
return type to match atomicio's
Diff from djm@, ok markus@

Revision 1.1 / (download) - annotate - [select for diffs], Thu May 28 16:50:16 2009 UTC (15 years ago) by andreas
Branch: MAIN
Diff to selected 1.5 (colored)

Keep track of number of bytes read and written. Needed for upcoming
changes. Most code from Martin Forssen, maf at appgate dot com.
ok markus@

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.