diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-10-31 14:36:58 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-10-31 14:36:58 +0000 |
commit | f75fdd6f81dbc1bc2557060bb13a876b28d224d6 (patch) | |
tree | 91c8f8a3f0bbdf02ef4f053cf19b647b15e6066e /usr.bin/ftp/ftp_var.h | |
parent | 8689e49e340c141b554aec797f362ec56643adbf (diff) |
add -r<seconds> option to retry connection.
dunno how to do optional argument.
Diffstat (limited to 'usr.bin/ftp/ftp_var.h')
-rw-r--r-- | usr.bin/ftp/ftp_var.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ftp/ftp_var.h b/usr.bin/ftp/ftp_var.h index c840bf705f2..d58f30e77af 100644 --- a/usr.bin/ftp/ftp_var.h +++ b/usr.bin/ftp/ftp_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ftp_var.h,v 1.3 1996/06/26 05:33:37 deraadt Exp $ */ +/* $OpenBSD: ftp_var.h,v 1.4 1996/10/31 14:36:56 mickey Exp $ */ /* $NetBSD: ftp_var.h,v 1.7 1995/09/15 00:32:35 pk Exp $ */ /* @@ -87,6 +87,7 @@ int mode; /* file transfer mode */ char bytename[32]; /* local byte size in ascii */ int bytesize; /* local byte size in binary */ int anonftp; /* force an anonftp login */ +int retry_connect; /* retry connect if failed */ char *hostname; /* name of host connected to */ int unix_server; /* server is unix, can use binary for ascii */ |