├── .gitignore ├── Makefile ├── README.md ├── mproxy.c ├── mproxy.pac ├── switchSharp_config.png └── use_mproxy.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwrt-develop/mproxy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwrt-develop/mproxy/HEAD/README.md -------------------------------------------------------------------------------- /mproxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwrt-develop/mproxy/HEAD/mproxy.c -------------------------------------------------------------------------------- /mproxy.pac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwrt-develop/mproxy/HEAD/mproxy.pac -------------------------------------------------------------------------------- /switchSharp_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwrt-develop/mproxy/HEAD/switchSharp_config.png -------------------------------------------------------------------------------- /use_mproxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwrt-develop/mproxy/HEAD/use_mproxy.png --------------------------------------------------------------------------------