diff options
author | 2004-11-16 23:39:56 +0000 | |
---|---|---|
committer | 2004-11-16 23:39:56 +0000 | |
commit | 75c7077169e0ae780f4ae96eafee3f83e465a5ef (patch) | |
tree | 053699676c56144c9917ae13cb59ba689ae12fb5 | |
parent | flat firmware file creation and installation (diff) | |
download | wireguard-openbsd-75c7077169e0ae780f4ae96eafee3f83e465a5ef.tar.xz wireguard-openbsd-75c7077169e0ae780f4ae96eafee3f83e465a5ef.zip |
fix bit defns for PFLAGs
-rw-r--r-- | sys/dev/pci/if_txpreg.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/dev/pci/if_txpreg.h b/sys/dev/pci/if_txpreg.h index 72c2294b089..61f6e5993fd 100644 --- a/sys/dev/pci/if_txpreg.h +++ b/sys/dev/pci/if_txpreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_txpreg.h,v 1.36 2004/05/31 19:25:00 mcbride Exp $ */ +/* $OpenBSD: if_txpreg.h,v 1.37 2004/11/16 23:39:56 jason Exp $ */ /* * Copyright (c) 2001 Aaron Campbell <aaron@monkey.org>. @@ -181,15 +181,15 @@ #define TXP_TYPE_IPSEC 0x0000 #define TXP_TYPE_TCPSEGMENT 0x0001 -#define TXP_PFLAG_NOCRC 0x0000 -#define TXP_PFLAG_IPCKSUM 0x0001 -#define TXP_PFLAG_TCPCKSUM 0x0002 -#define TXP_PFLAG_TCPSEGMENT 0x0004 -#define TXP_PFLAG_INSERTVLAN 0x0008 -#define TXP_PFLAG_IPSEC 0x0010 -#define TXP_PFLAG_PRIORITY 0x0020 -#define TXP_PFLAG_UDPCKSUM 0x0040 -#define TXP_PFLAG_PADFRAME 0x0080 +#define TXP_PFLAG_NOCRC 0x0001 +#define TXP_PFLAG_IPCKSUM 0x0002 +#define TXP_PFLAG_TCPCKSUM 0x0004 +#define TXP_PFLAG_TCPSEGMENT 0x0008 +#define TXP_PFLAG_INSERTVLAN 0x0010 +#define TXP_PFLAG_IPSEC 0x0020 +#define TXP_PFLAG_PRIORITY 0x0040 +#define TXP_PFLAG_UDPCKSUM 0x0080 +#define TXP_PFLAG_PADFRAME 0x0100 #define TXP_MISC_FIRSTDESC 0x0000 #define TXP_MISC_LASTDESC 0x0001 |