carp_counter      712 netinet/ip_carp.c 	if (carp_hmac_verify(sc, ch->carp_counter, ch->carp_md)) {
carp_counter      720 netinet/ip_carp.c 	tmp_counter = ntohl(ch->carp_counter[0]);
carp_counter      722 netinet/ip_carp.c 	tmp_counter += ntohl(ch->carp_counter[1]);
carp_counter      954 netinet/ip_carp.c 	ch->carp_counter[0] = htonl((sc->sc_counter>>32)&0xffffffff);
carp_counter      955 netinet/ip_carp.c 	ch->carp_counter[1] = htonl(sc->sc_counter&0xffffffff);
carp_counter      961 netinet/ip_carp.c 	carp_hmac_generate(sc, ch->carp_counter, ch->carp_md, HMAC_NOV6LL);
carp_counter       74 netinet/ip_carp.h 	u_int32_t	carp_counter[2];