| 602 | }; |
| 603 | |
| 604 | static __constructor void |
| 605 | inet6_ctor(void) |
| 606 | { |
| 607 | size_t i; |
| 608 | #ifndef FSTACK |
| 609 | #ifndef RESCUE |
| 610 | if (!feature_present("inet6")) |
| 611 | return; |
| 612 | #endif |
| 613 | #endif |
| 614 | for (i = 0; i < nitems(inet6_cmds); i++) |
| 615 | cmd_register(&inet6_cmds[i]); |
| 616 | af_register(&af_inet6); |
| 617 | opt_register(&in6_Lopt); |
| 618 | } |
nothing calls this directly
no test coverage detected