| 270 | VNET_SYSUNINIT(udp, SI_SUB_PROTO_DOMAIN, SI_ORDER_FOURTH, udp_destroy, NULL); |
| 271 | |
| 272 | static void |
| 273 | udplite_destroy(void *unused __unused) |
| 274 | { |
| 275 | |
| 276 | in_pcbinfo_destroy(&V_ulitecbinfo); |
| 277 | } |
| 278 | VNET_SYSUNINIT(udplite, SI_SUB_PROTO_DOMAIN, SI_ORDER_FOURTH, udplite_destroy, |
| 279 | NULL); |
| 280 | #endif |
nothing calls this directly
no test coverage detected