CProxy/README.md

27 lines
734 B
Markdown
Raw Normal View History

# cproxy
Android本地二级代理.
可以修改HTTP协议消息头(request).
可以修改HTTP协议CONNECT方法消息头.
# Build
git clone https://github.com/niuyuling/cproxy.git
git clone https://github.com/ndevilla/iniparser.git
cd iniparser
make
cd ../cproxy
make clean; make
2019-12-16 19:27:36 +08:00
# Help Information
cproxy proxy server
Author: aixiao@aixiao.me
Usage: [-?hdsc] [-s signal] [-c filename]
Options:
2019-06-20 09:39:31 +08:00
-?,-h : help information
-d : daemon
2019-12-16 19:27:36 +08:00
-s signal : send signal to a master process: stop, resatrt, reload, status
2019-06-20 09:39:31 +08:00
-c filename : set configuration file (default: conf/cproxy.ini)
2019-12-16 19:27:36 +08:00
Dec 9 2019 13:36:43 Compile、link.