| 1200 | } |
| 1201 | |
| 1202 | static void |
| 1203 | nd6_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 | |
| 1214 | static void |
| 1215 | nd6_dad_stoptimer(struct dadq *dp) |
no test coverage detected