├── .clang-format ├── .github └── workflows │ └── semgrep.yml ├── .gitignore ├── .gitmodules ├── LICENSE-BSD-CloudFlare ├── Makefile ├── README.md ├── cloudflare-ip-ranges.txt └── src ├── main.c ├── mmproxy.h ├── net.c └── utils.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/mmproxy/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/semgrep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/mmproxy/HEAD/.github/workflows/semgrep.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | mmproxy 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/mmproxy/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE-BSD-CloudFlare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/mmproxy/HEAD/LICENSE-BSD-CloudFlare -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/mmproxy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/mmproxy/HEAD/README.md -------------------------------------------------------------------------------- /cloudflare-ip-ranges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/mmproxy/HEAD/cloudflare-ip-ranges.txt -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/mmproxy/HEAD/src/main.c -------------------------------------------------------------------------------- /src/mmproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/mmproxy/HEAD/src/mmproxy.h -------------------------------------------------------------------------------- /src/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/mmproxy/HEAD/src/net.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/mmproxy/HEAD/src/utils.c --------------------------------------------------------------------------------