From de0332d4fab60ad3f350cbc89b7dc14603adfeaf Mon Sep 17 00:00:00 2001 From: Max Laier Date: Sat, 7 Aug 2004 09:32:04 +0000 Subject: [PATCH] Add a "void *if_carp" placeholder to struct ifnet with prospect to bring in the "Common address redundancy protocol" (CARP) during the 5-STABLE cycle. Hence doing the ABI break now. Approved by: re (scottl) --- sys/net/if_var.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/net/if_var.h b/sys/net/if_var.h index 0675bc9011b..c5164b1fc8e 100644 --- a/sys/net/if_var.h +++ b/sys/net/if_var.h @@ -148,6 +148,7 @@ struct ifnet { */ struct klist if_klist; /* events attached to this if */ int if_pcount; /* number of promiscuous listeners */ + void *if_carp; /* carp (tbd) interface pointer */ struct bpf_if *if_bpf; /* packet filter structure */ u_short if_index; /* numeric abbreviation for this if */ short if_timer; /* time 'til if_watchdog called */