Did this get merged? Last commit I saw was: commit c90ecf4320289e2567f2b6dee0c6c21d9d51b145 Author: Jeff Carlson <jeff@xxxxxxxxxxxxxxxx> Date: Sun Aug 15 18:59:25 2021 -0700 pknock: added UDP options to help and made whitespace consistent Thanks > On Sep 28, 2021, at 3:43 AM, Jan Engelhardt <jengelh@xxxxxxx> wrote: > > On Sunday 2021-09-26 21:57, Philip Prindeville wrote: > >> From: Philip Prindeville <philipp@xxxxxxxxxxxxxxxxxxxxx> >> >> Not all modules compile equally well when CONFIG_IPv6 is disabled. >> >> { >> .name = "ECHO", >> .revision = 0, >> - .family = NFPROTO_IPV6, >> + .family = NFPROTO_IPV4, >> .proto = IPPROTO_UDP, >> .table = "filter", >> - .target = echo_tg6, >> + .target = echo_tg4, >> .me = THIS_MODULE, >> }, >> +#ifdef WITH_IPV6 > > I put the original order back, makes the diff smaller. > So added. >