| 323 | }; |
| 324 | |
| 325 | static __constructor void |
| 326 | vlan_ctor(void) |
| 327 | { |
| 328 | size_t i; |
| 329 | |
| 330 | for (i = 0; i < nitems(vlan_cmds); i++) |
| 331 | cmd_register(&vlan_cmds[i]); |
| 332 | af_register(&af_vlan); |
| 333 | callback_register(vlan_cb, NULL); |
| 334 | clone_setdefcallback_prefix("vlan", vlan_create); |
| 335 | clone_setdefcallback_filter(vlan_match_ethervid, vlan_create); |
| 336 | } |
nothing calls this directly
no test coverage detected