remove TCPOPT_MD5SIGNATURE because no one in our tree uses it

and it's duplicated with TCPOPT_SIGNATURE.
i preferred TCPOPT_SIGNATURE because it's used by FreeBSD and OpenBSD.
This commit is contained in:
yamt 2004-12-07 14:24:04 +00:00
parent 6fec1d4f73
commit e745dd4766
1 changed files with 2 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: tcp.h,v 1.17 2004/05/07 20:11:52 kleink Exp $ */
/* $NetBSD: tcp.h,v 1.18 2004/12/07 14:24:04 yamt Exp $ */
/*
* Copyright (c) 1982, 1986, 1993
@ -85,8 +85,6 @@ struct tcphdr {
#define TCPOPT_TIMESTAMP 8
#define TCPOLEN_TIMESTAMP 10
#define TCPOLEN_TSTAMP_APPA (TCPOLEN_TIMESTAMP+2) /* appendix A */
#define TCPOPT_MD5SIGNATURE 19 /* RFC 2385 */
#define TCPOLEN_MD5SIGNATURE 18
#define TCPOPT_TSTAMP_HDR \
(TCPOPT_NOP<<24|TCPOPT_NOP<<16|TCPOPT_TIMESTAMP<<8|TCPOLEN_TIMESTAMP)