| 3699 | |
| 3700 | #ifdef INET |
| 3701 | static void |
| 3702 | rl_init(void *st) |
| 3703 | { |
| 3704 | rate_limit_active = counter_u64_alloc(M_WAITOK); |
| 3705 | rate_limit_alloc_fail = counter_u64_alloc(M_WAITOK); |
| 3706 | rate_limit_set_ok = counter_u64_alloc(M_WAITOK); |
| 3707 | } |
| 3708 | |
| 3709 | SYSINIT(rl, SI_SUB_PROTO_DOMAININIT, SI_ORDER_ANY, rl_init, NULL); |
| 3710 | #endif |
nothing calls this directly
no test coverage detected