├── .github └── ISSUE_TEMPLATE │ └── Custom.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── misc ├── check_sixxsd.py └── sixxsd.conf └── src ├── Makefile ├── ayiya.c ├── ayiya.h ├── checksum.c ├── checksum.h ├── common.c ├── common.h ├── common_extra.c ├── common_extra.h ├── config.c ├── config.h ├── context.c ├── context.h ├── decode.c ├── direct.c ├── direct.h ├── gre.c ├── gre.h ├── hash_md5.c ├── hash_md5.h ├── hash_sha1.c ├── hash_sha1.h ├── hb.c ├── hb.h ├── icmpv4.c ├── icmpv4.h ├── iface.c ├── iface.h ├── list.h ├── platform.h ├── pop.c ├── popstatd.c ├── pproxy.c ├── pproxy.h ├── rwl.c ├── rwl.h ├── sixxsd.c ├── sixxsd.h ├── stats.h ├── subnet.c ├── subnet.h ├── thread.c ├── thread.h ├── tunnel.c └── tunnel.h /.github/ISSUE_TEMPLATE/Custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/.github/ISSUE_TEMPLATE/Custom.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Temporary Files 2 | *.o 3 | *.d 4 | 5 | # Output Directory 6 | bin/ 7 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/Makefile -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/README.md -------------------------------------------------------------------------------- /misc/check_sixxsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/misc/check_sixxsd.py -------------------------------------------------------------------------------- /misc/sixxsd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/misc/sixxsd.conf -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/ayiya.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/ayiya.c -------------------------------------------------------------------------------- /src/ayiya.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/ayiya.h -------------------------------------------------------------------------------- /src/checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/checksum.c -------------------------------------------------------------------------------- /src/checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/checksum.h -------------------------------------------------------------------------------- /src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/common.c -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/common.h -------------------------------------------------------------------------------- /src/common_extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/common_extra.c -------------------------------------------------------------------------------- /src/common_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/common_extra.h -------------------------------------------------------------------------------- /src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/config.c -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/config.h -------------------------------------------------------------------------------- /src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/context.c -------------------------------------------------------------------------------- /src/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/context.h -------------------------------------------------------------------------------- /src/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/decode.c -------------------------------------------------------------------------------- /src/direct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/direct.c -------------------------------------------------------------------------------- /src/direct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/direct.h -------------------------------------------------------------------------------- /src/gre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/gre.c -------------------------------------------------------------------------------- /src/gre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/gre.h -------------------------------------------------------------------------------- /src/hash_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/hash_md5.c -------------------------------------------------------------------------------- /src/hash_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/hash_md5.h -------------------------------------------------------------------------------- /src/hash_sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/hash_sha1.c -------------------------------------------------------------------------------- /src/hash_sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/hash_sha1.h -------------------------------------------------------------------------------- /src/hb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/hb.c -------------------------------------------------------------------------------- /src/hb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/hb.h -------------------------------------------------------------------------------- /src/icmpv4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/icmpv4.c -------------------------------------------------------------------------------- /src/icmpv4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/icmpv4.h -------------------------------------------------------------------------------- /src/iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/iface.c -------------------------------------------------------------------------------- /src/iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/iface.h -------------------------------------------------------------------------------- /src/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/list.h -------------------------------------------------------------------------------- /src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/platform.h -------------------------------------------------------------------------------- /src/pop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/pop.c -------------------------------------------------------------------------------- /src/popstatd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/popstatd.c -------------------------------------------------------------------------------- /src/pproxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/pproxy.c -------------------------------------------------------------------------------- /src/pproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/pproxy.h -------------------------------------------------------------------------------- /src/rwl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/rwl.c -------------------------------------------------------------------------------- /src/rwl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/rwl.h -------------------------------------------------------------------------------- /src/sixxsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/sixxsd.c -------------------------------------------------------------------------------- /src/sixxsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/sixxsd.h -------------------------------------------------------------------------------- /src/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/stats.h -------------------------------------------------------------------------------- /src/subnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/subnet.c -------------------------------------------------------------------------------- /src/subnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/subnet.h -------------------------------------------------------------------------------- /src/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/thread.c -------------------------------------------------------------------------------- /src/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/thread.h -------------------------------------------------------------------------------- /src/tunnel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/tunnel.c -------------------------------------------------------------------------------- /src/tunnel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massar/sixxsd/HEAD/src/tunnel.h --------------------------------------------------------------------------------