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:
parent
6fec1d4f73
commit
e745dd4766
|
@ -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,13 +85,11 @@ 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)
|
||||
|
||||
#define TCPOPT_SIGNATURE 19 /* Keyed MD5: RFC 2385 */
|
||||
#define TCPOPT_SIGNATURE 19 /* Keyed MD5: RFC 2385 */
|
||||
#define TCPOLEN_SIGNATURE 18
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue