| 146 | } |
| 147 | |
| 148 | static void |
| 149 | div_init(void) |
| 150 | { |
| 151 | |
| 152 | /* |
| 153 | * XXX We don't use the hash list for divert IP, but it's easier to |
| 154 | * allocate one-entry hash lists than it is to check all over the |
| 155 | * place for hashbase == NULL. |
| 156 | */ |
| 157 | in_pcbinfo_init(&V_divcbinfo, "div", &V_divcb, 1, 1, "divcb", |
| 158 | div_inpcb_init, IPI_HASHFIELDS_NONE); |
| 159 | } |
| 160 | |
| 161 | static void |
| 162 | div_destroy(void *unused __unused) |
nothing calls this directly
no test coverage detected