| 566 | }; |
| 567 | |
| 568 | void |
| 569 | in_gre_init(void) |
| 570 | { |
| 571 | |
| 572 | if (!IS_DEFAULT_VNET(curvnet)) |
| 573 | return; |
| 574 | ipv4_srcaddrtab = ip_encap_register_srcaddr(in_gre_srcaddr, |
| 575 | NULL, M_WAITOK); |
| 576 | ecookie = ip_encap_attach(&ipv4_encap_cfg, NULL, M_WAITOK); |
| 577 | } |
| 578 | |
| 579 | void |
| 580 | in_gre_uninit(void) |
no test coverage detected