| 566 | }; |
| 567 | |
| 568 | void |
| 569 | in6_gre_init(void) |
| 570 | { |
| 571 | |
| 572 | if (!IS_DEFAULT_VNET(curvnet)) |
| 573 | return; |
| 574 | ipv6_srcaddrtab = ip6_encap_register_srcaddr(in6_gre_srcaddr, |
| 575 | NULL, M_WAITOK); |
| 576 | ecookie = ip6_encap_attach(&ipv6_encap_cfg, NULL, M_WAITOK); |
| 577 | } |
| 578 | |
| 579 | void |
| 580 | in6_gre_uninit(void) |
no test coverage detected