diff options
author | glebius <glebius@FreeBSD.org> | 2012-01-06 12:05:43 +0000 |
---|---|---|
committer | glebius <glebius@FreeBSD.org> | 2012-01-06 12:05:43 +0000 |
commit | 3c3da145a2e0f6cc3bfe90e4f3e213834f31f87e (patch) | |
tree | f533b41aafac5433ca06edffb953c79d41af516d /sys/net | |
parent | 66f7e38f169d8416f70b5445078781fd68d967dc (diff) | |
download | FreeBSD-src-3c3da145a2e0f6cc3bfe90e4f3e213834f31f87e.zip FreeBSD-src-3c3da145a2e0f6cc3bfe90e4f3e213834f31f87e.tar.gz |
Since r228571 CARP is no longer an interface.
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if_media.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sys/net/if_media.h b/sys/net/if_media.h index b6fd316..6014e2f 100644 --- a/sys/net/if_media.h +++ b/sys/net/if_media.h @@ -247,11 +247,6 @@ uint64_t ifmedia_baudrate(int); #define IFM_ATM_UNASSIGNED 0x00000400 /* unassigned cells */ /* - * CARP Common Address Redundancy Protocol - */ -#define IFM_CARP 0x000000c0 - -/* * Shared media sub-types */ #define IFM_AUTO 0 /* Autoselect best media */ @@ -337,7 +332,6 @@ struct ifmedia_description { { IFM_FDDI, "FDDI" }, \ { IFM_IEEE80211, "IEEE 802.11 Wireless Ethernet" }, \ { IFM_ATM, "ATM" }, \ - { IFM_CARP, "Common Address Redundancy Protocol" }, \ { 0, NULL }, \ } @@ -718,8 +712,6 @@ struct ifmedia_status_description { { "no network", "active" } }, \ { IFM_ATM, IFM_AVALID, IFM_ACTIVE, \ { "no network", "active" } }, \ - { IFM_CARP, IFM_AVALID, IFM_ACTIVE, \ - { "backup", "master" } }, \ { 0, 0, 0, \ { NULL, NULL } } \ } |