| 662 | }; |
| 663 | |
| 664 | static __constructor void |
| 665 | vxlan_ctor(void) |
| 666 | { |
| 667 | size_t i; |
| 668 | |
| 669 | for (i = 0; i < nitems(vxlan_cmds); i++) |
| 670 | cmd_register(&vxlan_cmds[i]); |
| 671 | af_register(&af_vxlan); |
| 672 | callback_register(vxlan_cb, NULL); |
| 673 | clone_setdefcallback_prefix("vxlan", vxlan_create); |
| 674 | } |
nothing calls this directly
no test coverage detected