MCPcopy Create free account
hub / github.com/F-Stack/f-stack / nd6_dad_starttimer

Function nd6_dad_starttimer

freebsd/netinet6/nd6_nbr.c:1202–1212  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1200}
1201
1202static void
1203nd6_dad_starttimer(struct dadq *dp, int ticks, int send_ns)
1204{
1205
1206 NET_EPOCH_ASSERT();
1207
1208 if (send_ns != 0)
1209 nd6_dad_ns_output(dp);
1210 callout_reset(&dp->dad_timer_ch, ticks,
1211 (void (*)(void *))nd6_dad_timer, (void *)dp);
1212}
1213
1214static void
1215nd6_dad_stoptimer(struct dadq *dp)

Callers 2

nd6_dad_startFunction · 0.85
nd6_dad_timerFunction · 0.85

Calls 1

nd6_dad_ns_outputFunction · 0.85

Tested by

no test coverage detected