Correct the description of two bits in the TCP context descriptor.

This commit is contained in:
thorpej 2002-07-14 00:56:22 +00:00
parent c807c0dfe6
commit 209a807d3d
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_wmreg.h,v 1.1 2002/03/28 04:54:35 thorpej Exp $ */
/* $NetBSD: if_wmreg.h,v 1.2 2002/07/14 00:56:22 thorpej Exp $ */
/*
* Copyright (c) 2001 Wasabi Systems, Inc.
@ -145,8 +145,8 @@ struct livengood_tcpip_ctxdesc {
};
/* commands for context descriptors */
#define WTX_TCPIP_CMD_TCP (1U << 24) /* TCP context valid */
#define WTX_TCPIP_CMD_IP (1U << 25) /* IP context valid */
#define WTX_TCPIP_CMD_TCP (1U << 24) /* 1 = TCP, 0 = UDP */
#define WTX_TCPIP_CMD_IP (1U << 25) /* 1 = IPv4, 0 = IPv6 */
#define WTX_TCPIP_CMD_TSE (1U << 26) /* segmentation context valid */
#define WTX_TCPIP_IPCSS(x) ((x) << 0) /* checksum start */