diff options
author | Andreas Gunnarsson <andreas@cvs.openbsd.org> | 2009-06-27 09:35:07 +0000 |
---|---|---|
committer | Andreas Gunnarsson <andreas@cvs.openbsd.org> | 2009-06-27 09:35:07 +0000 |
commit | 5fcd38d20de9ae7536b13281480efe6173c8e148 (patch) | |
tree | 15057cd88f48f1d8f7e8205e6d8752e2ed7ac059 /usr.bin/ssh/readconf.h | |
parent | ce9777184808c5552d3742bea733fd02b25c4a77 (diff) |
Add client option UseRoaming. It doesn't do anything yet but will
control whether the client tries to use roaming if enabled on the
server. From Martin Forssen.
ok markus@
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 8fb3a852816..2ebfebe946a 100644 --- a/usr.bin/ssh/readconf.h +++ b/usr.bin/ssh/readconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.h,v 1.78 2009/02/12 03:00:56 djm Exp $ */ +/* $OpenBSD: readconf.h,v 1.79 2009/06/27 09:35:06 andreas Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -123,6 +123,8 @@ typedef struct { int permit_local_command; int visual_host_key; + int use_roaming; + } Options; #define SSHCTL_MASTER_NO 0 |