diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2005-03-01 10:40:28 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2005-03-01 10:40:28 +0000 |
commit | b365d94d9cdcb840e0e3df7d4ff479fc940461ea (patch) | |
tree | ebeeab4e46366efbd5130d90421bdb7875ba9542 /usr.bin/ssh/readconf.h | |
parent | e491a20dd7bb33c41c50ddbd0275af9e60dec8c4 (diff) |
add support for hashing host names and addresses added to known_hosts files,
to improve privacy of which hosts user have been visiting; ok markus@ deraadt@
Diffstat (limited to 'usr.bin/ssh/readconf.h')
-rw-r--r-- | usr.bin/ssh/readconf.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/readconf.h b/usr.bin/ssh/readconf.h index 03b772a2d5d..de4b4cb2787 100644 --- a/usr.bin/ssh/readconf.h +++ b/usr.bin/ssh/readconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.h,v 1.65 2005/03/01 10:09:52 djm Exp $ */ +/* $OpenBSD: readconf.h,v 1.66 2005/03/01 10:40:27 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -112,6 +112,8 @@ typedef struct { char *control_path; int control_master; + + int hash_known_hosts; } Options; |