| 757 | } |
| 758 | |
| 759 | static void |
| 760 | ipcomp_detach(void) |
| 761 | { |
| 762 | |
| 763 | #ifdef INET |
| 764 | ip_encap_detach(ipe4_cookie); |
| 765 | #endif |
| 766 | #ifdef INET6 |
| 767 | ip6_encap_detach(ipe6_cookie); |
| 768 | #endif |
| 769 | xform_detach(&ipcomp_xformsw); |
| 770 | } |
| 771 | |
| 772 | SYSINIT(ipcomp_xform_init, SI_SUB_PROTO_DOMAIN, SI_ORDER_MIDDLE, |
| 773 | ipcomp_attach, NULL); |
nothing calls this directly
no test coverage detected