├── .gitignore ├── README ├── fast-classifier ├── Makefile ├── fast-classifier.c ├── fast-classifier.h ├── nl_classifier_test.c └── userspace_example.c ├── patches ├── Kconfig.patch ├── Makefile.patch ├── dev.c.patch └── nf_conntrack_proto_tcp.c.patch ├── shortcut-fe ├── Kconfig ├── Makefile ├── sfe.h ├── sfe_backport.h ├── sfe_cm.c ├── sfe_cm.h ├── sfe_ipv4.c └── sfe_ipv6.c └── simulated-driver ├── Makefile ├── sfe_drv.c └── sfe_drv.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hell401/shortcut-fe/HEAD/.gitignore -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hell401/shortcut-fe/HEAD/README -------------------------------------------------------------------------------- /fast-classifier/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hell401/shortcut-fe/HEAD/fast-classifier/Makefile -------------------------------------------------------------------------------- /fast-classifier/fast-classifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hell401/shortcut-fe/HEAD/fast-classifier/fast-classifier.c -------------------------------------------------------------------------------- /fast-classifier/fast-classifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hell401/shortcut-fe/HEAD/fast-classifier/fast-classifier.h -------------------------------------------------------------------------------- /fast-classifier/nl_classifier_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hell401/shortcut-fe/HEAD/fast-classifier/nl_classifier_test.c -------------------------------------------------------------------------------- /fast-classifier/userspace_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hell401/shortcut-fe/HEAD/fast-classifier/userspace_example.c -------------------------------------------------------------------------------- /patches/Kconfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hell401/shortcut-fe/HEAD/patches/Kconfig.patch -------------------------------------------------------------------------------- /patches/Makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hell401/shortcut-fe/HEAD/patches/Makefile.patch -------------------------------------------------------------------------------- /patches/dev.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hell401/shortcut-fe/HEAD/patches/dev.c.patch -------------------------------------------------------------------------------- /patches/nf_conntrack_proto_tcp.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hell401/shortcut-fe/HEAD/patches/nf_conntrack_proto_tcp.c.patch -------------------------------------------------------------------------------- /shortcut-fe/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hell401/shortcut-fe/HEAD/shortcut-fe/Kconfig -------------------------------------------------------------------------------- /shortcut-fe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hell401/shortcut-fe/HEAD/shortcut-fe/Makefile -------------------------------------------------------------------------------- /shortcut-fe/sfe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hell401/shortcut-fe/HEAD/shortcut-fe/sfe.h -------------------------------------------------------------------------------- /shortcut-fe/sfe_backport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hell401/shortcut-fe/HEAD/shortcut-fe/sfe_backport.h -------------------------------------------------------------------------------- /shortcut-fe/sfe_cm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hell401/shortcut-fe/HEAD/shortcut-fe/sfe_cm.c -------------------------------------------------------------------------------- /shortcut-fe/sfe_cm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hell401/shortcut-fe/HEAD/shortcut-fe/sfe_cm.h -------------------------------------------------------------------------------- /shortcut-fe/sfe_ipv4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hell401/shortcut-fe/HEAD/shortcut-fe/sfe_ipv4.c -------------------------------------------------------------------------------- /shortcut-fe/sfe_ipv6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hell401/shortcut-fe/HEAD/shortcut-fe/sfe_ipv6.c -------------------------------------------------------------------------------- /simulated-driver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hell401/shortcut-fe/HEAD/simulated-driver/Makefile -------------------------------------------------------------------------------- /simulated-driver/sfe_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hell401/shortcut-fe/HEAD/simulated-driver/sfe_drv.c -------------------------------------------------------------------------------- /simulated-driver/sfe_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hell401/shortcut-fe/HEAD/simulated-driver/sfe_drv.h --------------------------------------------------------------------------------