2019-01-10 23:12:51 +08:00
|
|
|
# cproxy
|
2019-02-07 17:26:48 +08:00
|
|
|
Android本地二级代理.
|
|
|
|
可以修改HTTP协议消息头(request).
|
|
|
|
可以修改HTTP协议CONNECT方法消息头.
|
2019-01-10 23:12:51 +08:00
|
|
|
|
|
|
|
|
|
|
|
# Build
|
|
|
|
git clone https://github.com/niuyuling/cproxy.git
|
|
|
|
git clone https://github.com/ndevilla/iniparser.git
|
|
|
|
cd iniparser
|
|
|
|
make
|
2019-01-19 16:13:58 +08:00
|
|
|
cd ../cproxy
|
2019-05-09 18:25:42 +08:00
|
|
|
make clean; make
|
|
|
|
|
|
|
|
# Help Information
|
|
|
|
cproxy proxy server
|
|
|
|
Author: aixiao@aixiao.me
|
|
|
|
Usage: [-?hdsc] [-s signal] [-c filename]
|
|
|
|
|
|
|
|
Options:
|
|
|
|
-h : help information
|
|
|
|
-d : daemon
|
|
|
|
-s signal : send signal to a master process: stop
|
2019-05-09 18:29:15 +08:00
|
|
|
-c filename : set configuration file (default: conf/cproxy.ini)
|
2019-05-09 18:25:42 +08:00
|
|
|
|
|
|
|
May 7 2019 18:48:10 Compile、link.
|