diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-05-28 05:52:52 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-05-28 05:52:52 +0000 |
commit | 6c41f06e46d789159beff47b9d2e618460f799c6 (patch) | |
tree | aa35fe27e170d1f8ad6bca87e5c8c7e76cd006b8 /sys/net/if.h | |
parent | 6bde8dfc3549a224d82897164d4e611ff3b32339 (diff) |
No need for separate ESP/AH interface capabilities.
Diffstat (limited to 'sys/net/if.h')
-rw-r--r-- | sys/net/if.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sys/net/if.h b/sys/net/if.h index 97d3af02398..fd8b90e0f38 100644 --- a/sys/net/if.h +++ b/sys/net/if.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if.h,v 1.23 2001/05/28 05:16:27 angelos Exp $ */ +/* $OpenBSD: if.h,v 1.24 2001/05/28 05:52:51 angelos Exp $ */ /* $NetBSD: if.h,v 1.23 1996/05/07 02:40:27 thorpej Exp $ */ /* @@ -210,10 +210,9 @@ struct ifnet { /* and the entries */ #define IFCAP_CSUM_IPv4 0x00000001 /* can do IPv4 header csum */ #define IFCAP_CSUM_TCPv4 0x00000002 /* can do IPv4/TCP csum */ #define IFCAP_CSUM_UDPv4 0x00000004 /* can do IPv4/UDP csum */ -#define IFCAP_IPSEC_ESPv4 0x00000008 /* can do IPv4/ESP */ -#define IFCAP_IPSEC_AHv4 0x00000010 /* can do IPv4/AH */ -#define IFCAP_VLAN_MTU 0x00000020 /* VLAN-compatible MTU */ -#define IFCAP_VLAN_HWTAGGING 0x00000040 /* hardware VLAN tag support */ +#define IFCAP_IPSECv4 0x00000008 /* can do IPv4 IPsec */ +#define IFCAP_VLAN_MTU 0x00000010 /* VLAN-compatible MTU */ +#define IFCAP_VLAN_HWTAGGING 0x00000020 /* hardware VLAN tag support */ /* * Output queues (ifp->if_snd) and internetwork datagram level (pup level 1) |