diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-06-07 08:02:18 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-06-07 08:02:18 +0000 |
commit | a06d33bdfdb21dd2c68ec1d1fb8cff5c35991102 (patch) | |
tree | 3182f45fd2039fd6735dbaced296e33cb4c8fdca /sys/netinet/tcp_input.c | |
parent | 5654c2ce1c74e4270134b28818490dbf267f0878 (diff) |
remove unused packet header length defines
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r-- | sys/netinet/tcp_input.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 328521d6f01..9ba66ae6d8e 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.405 2024/04/17 20:48:51 bluhm Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.406 2024/06/07 08:02:17 jsg Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -106,11 +106,6 @@ int tcp_flush_queue(struct tcpcb *); #ifdef INET6 #include <netinet6/in6_var.h> #include <netinet6/nd6.h> - -/* for the packet header length in the mbuf */ -#define M_PH_LEN(m) (((struct mbuf *)(m))->m_pkthdr.len) -#define M_V6_LEN(m) (M_PH_LEN(m) - sizeof(struct ip6_hdr)) -#define M_V4_LEN(m) (M_PH_LEN(m) - sizeof(struct ip)) #endif /* INET6 */ int tcprexmtthresh = 3; |