diff options
author | Damien Miller <djm@mindrot.org> | 2003-05-16 03:39:04 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2003-05-16 03:39:04 +0200 |
commit | b78d5eb6c58d54fb9972afe487ad94e63cc7d5c7 (patch) | |
tree | 8f40c7da74a5718e2d4c69919c2211049bcb0f77 /readconf.h | |
parent | - markus@cvs.openbsd.org 2003/05/15 14:09:21 (diff) | |
download | openssh-b78d5eb6c58d54fb9972afe487ad94e63cc7d5c7.tar.xz openssh-b78d5eb6c58d54fb9972afe487ad94e63cc7d5c7.zip |
- djm@cvs.openbsd.org 2003/05/15 14:55:25
[readconf.c readconf.h ssh_config ssh_config.5 sshconnect.c]
add a ConnectTimeout option to ssh, based on patch from
Jean-Charles Longuet (jclonguet at free.fr); portable #207 ok markus@
Diffstat (limited to 'readconf.h')
-rw-r--r-- | readconf.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/readconf.h b/readconf.h index 991e20091..c884de68b 100644 --- a/readconf.h +++ b/readconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.h,v 1.49 2003/05/15 01:48:10 jakob Exp $ */ +/* $OpenBSD: readconf.h,v 1.50 2003/05/15 14:55:25 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -60,6 +60,8 @@ typedef struct { int port; /* Port to connect. */ int connection_attempts; /* Max attempts (seconds) before * giving up */ + int connection_timeout; /* Max time (seconds) before + * aborting connection attempt */ int number_of_password_prompts; /* Max number of password * prompts. */ int cipher; /* Cipher to use. */ |