diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-07-26 16:43:32 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-07-26 16:43:32 +0000 |
commit | 224f973b72f39949d041a5151472ecbf43add0a1 (patch) | |
tree | 648deb455b0c938aa54f5d56af521bc2880cd3db /include | |
parent | 1fc179d68fa68a6cc2bb7b1b830f8cc1621d44b3 (diff) |
TIMEOUT* values are not part of the protocol. tftp.h is a namespace
export of the protocol. you shall not add non-protocol stuff to such
a file, period.
Diffstat (limited to 'include')
-rw-r--r-- | include/arpa/tftp.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/arpa/tftp.h b/include/arpa/tftp.h index 8f9d4b89dc1..c1e6b7e8ea2 100644 --- a/include/arpa/tftp.h +++ b/include/arpa/tftp.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tftp.h,v 1.7 2006/07/26 09:10:03 mglocker Exp $ */ +/* $OpenBSD: tftp.h,v 1.8 2006/07/26 16:43:30 deraadt Exp $ */ /* $NetBSD: tftp.h,v 1.3 1994/10/26 00:56:48 cgd Exp $ */ /* @@ -41,9 +41,6 @@ #define SEGSIZE 512 /* data segment size */ #define SEGSIZE_MIN 8 /* minimal data segment size */ #define SEGSIZE_MAX 65464 /* maximal data segment size */ -#define TIMEOUT 5 /* packet rexmt timeout */ -#define TIMEOUT_MIN 1 /* minimal packet rexmt timeout */ -#define TIMEOUT_MAX 255 /* maximal packet rexmt timeout */ /* * Packet types. |