diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-10-28 20:34:21 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-10-28 20:34:21 +0000 |
commit | 902f30213b6aeae26f996f8b372051d1eb6972d8 (patch) | |
tree | 1e2d6d56f96d8ecfb2a183d5d22bd8fadb744d67 /sys/net | |
parent | b55094580d972a7e468f45967c72bb4773bc8afb (diff) |
define IFT_CARP, and set if_type to that on carp interfaces instead
of hiding under IFT_PROPVIRTUAL, ryan daniel ok
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if_types.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net/if_types.h b/sys/net/if_types.h index d7a242d2d28..2c27331a7a6 100644 --- a/sys/net/if_types.h +++ b/sys/net/if_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_types.h,v 1.15 2003/06/02 23:28:12 millert Exp $ */ +/* $OpenBSD: if_types.h,v 1.16 2004/10/28 20:34:20 henning Exp $ */ /* $NetBSD: if_types.h,v 1.17 2000/10/26 06:51:31 onoe Exp $ */ /* @@ -265,5 +265,6 @@ #define IFT_ENC 0xf4 /* Encapsulation */ #define IFT_PFLOG 0xf5 /* Packet filter logging */ #define IFT_PFSYNC 0xf6 /* Packet filter state syncing */ +#define IFT_CARP 0xf7 /* Common Access Redundancy Protocol */ #endif /* _NET_IF_TYPES_H_ */ |