Lines Matching defs:carp_softc
273 struct carp_softc { struct
274 struct arpcom arpcom;
275 struct ifnet *sc_carpdev; /* parent interface */
276 struct carp_vhaddr_list sc_vha_list; /* virtual addr list */
278 const struct in_ifaddr *sc_ia; /* primary iface address v4 */
279 struct ip_moptions sc_imo;
282 struct in6_ifaddr *sc_ia6; /* primary iface address v6 */
283 struct ip6_moptions sc_im6o;
286 enum { INIT = 0, BACKUP, MASTER }
287 sc_state;
288 boolean_t sc_dead;
290 int sc_suppress;
292 int sc_sendad_errors;
317 LIST_ENTRY(carp_softc) sc_next; /* Interface clue */ argument