├── .gitignore ├── Makefile ├── README.md ├── dkms.conf ├── include └── randmap │ └── xt_randmap.h ├── license.txt ├── nf_nat_proto.inc ├── usrmod ├── Makefile └── libxt_RANDMAP.c └── xt_RANDMAP.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apernet/iptables-mod-randmap/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apernet/iptables-mod-randmap/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apernet/iptables-mod-randmap/HEAD/README.md -------------------------------------------------------------------------------- /dkms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apernet/iptables-mod-randmap/HEAD/dkms.conf -------------------------------------------------------------------------------- /include/randmap/xt_randmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apernet/iptables-mod-randmap/HEAD/include/randmap/xt_randmap.h -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apernet/iptables-mod-randmap/HEAD/license.txt -------------------------------------------------------------------------------- /nf_nat_proto.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apernet/iptables-mod-randmap/HEAD/nf_nat_proto.inc -------------------------------------------------------------------------------- /usrmod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apernet/iptables-mod-randmap/HEAD/usrmod/Makefile -------------------------------------------------------------------------------- /usrmod/libxt_RANDMAP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apernet/iptables-mod-randmap/HEAD/usrmod/libxt_RANDMAP.c -------------------------------------------------------------------------------- /xt_RANDMAP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apernet/iptables-mod-randmap/HEAD/xt_RANDMAP.c --------------------------------------------------------------------------------