Go to file
2021-12-09 19:31:51 +08:00
Android.mk The getaddrinfo () function is no longer used, the static compilation libc dependency is removed, and the configuration file server address is no longer supported to fill in the domain name. 2021-12-09 19:31:51 +08:00
Application.mk The getaddrinfo () function is no longer used, the static compilation libc dependency is removed, and the configuration file server address is no longer supported to fill in the domain name. 2021-12-09 19:31:51 +08:00
conf.c Modify httpdns for Android, and fix the problem of negative number when get gets the length of host. 2021-07-20 22:17:06 +08:00
conf.h The getaddrinfo () function is no longer used, the static compilation libc dependency is removed, and the configuration file server address is no longer supported to fill in the domain name. 2021-12-09 19:31:51 +08:00
CProxy.conf The getaddrinfo () function is no longer used, the static compilation libc dependency is removed, and the configuration file server address is no longer supported to fill in the domain name. 2021-12-09 19:31:51 +08:00
CProxy.conf.explain The getaddrinfo () function is no longer used, the static compilation libc dependency is removed, and the configuration file server address is no longer supported to fill in the domain name. 2021-12-09 19:31:51 +08:00
help.c Modify httpdns for Android, and fix the problem of negative number when get gets the length of host. 2021-07-20 22:17:06 +08:00
help.h The getaddrinfo () function is no longer used, the static compilation libc dependency is removed, and the configuration file server address is no longer supported to fill in the domain name. 2021-12-09 19:31:51 +08:00
http_proxy.c The getaddrinfo () function is no longer used, the static compilation libc dependency is removed, and the configuration file server address is no longer supported to fill in the domain name. 2021-12-09 19:31:51 +08:00
http_proxy.h Modify httpdns for Android, and fix the problem of negative number when get gets the length of host. 2021-07-20 22:17:06 +08:00
http_request.c The getaddrinfo () function is no longer used, the static compilation libc dependency is removed, and the configuration file server address is no longer supported to fill in the domain name. 2021-12-09 19:31:51 +08:00
http_request.h Modify httpdns for Android, and fix the problem of negative number when get gets the length of host. 2021-07-20 22:17:06 +08:00
httpdns.c The getaddrinfo () function is no longer used, the static compilation libc dependency is removed, and the configuration file server address is no longer supported to fill in the domain name. 2021-12-09 19:31:51 +08:00
httpdns.h Modify httpdns for Android, and fix the problem of negative number when get gets the length of host. 2021-07-20 22:17:06 +08:00
main.c The getaddrinfo () function is no longer used, the static compilation libc dependency is removed, and the configuration file server address is no longer supported to fill in the domain name. 2021-12-09 19:31:51 +08:00
main.h Modify httpdns for Android, and fix the problem of negative number when get gets the length of host. 2021-07-20 22:17:06 +08:00
Makefile Modify httpdns for Android, and fix the problem of negative number when get gets the length of host. 2021-07-20 22:17:06 +08:00
README.md Modify httpdns for Android, and fix the problem of negative number when get gets the length of host. 2021-07-20 22:17:06 +08:00
timeout.c Modify httpdns for Android, and fix the problem of negative number when get gets the length of host. 2021-07-20 22:17:06 +08:00
timeout.h Modify httpdns for Android, and fix the problem of negative number when get gets the length of host. 2021-07-20 22:17:06 +08:00

CProxy

EPOLL多路复用IO, Android/Linux本地二级代理.  
可以修改HTTP协议消息头(request).  
可以修改HTTP协议CONNECT方法消息头.  
可以修改HTTP协议GET方法消息头.  
支持IPV4/IPV6.

Build

Linux编译:  
git clone https://github.com/niuyuling/CProxy.git  
cd CProxy  
make clean; make  

windows 10子系统交叉编译:  
apt-get install gcc-aarch64-linux-gnu  
make clean; CROSS_COMPILE=aarch64-linux-gnu- make  

Android NDK 编译:  
ndk-build NDK_PROJECT_PATH=. NDK_APPLICATION_MK=Application.mk APP_BUILD_SCRIPT=Android.mk  

Help Information

CProxy proxy server
Author: aixiao@aixiao.me
Usage: [-?h] [-s signal] [-c filename]

Options:
    -s --signal            : send signal to a master process: stop, quit, restart, reload, status
    -c --config            : set configuration file, default: CProxy.conf
    -? -h --? --help       : help information

Dec 19 2020 09:18:15 Compile、link.

#启动
./CProxy -c CProxy.conf
#关闭
./CProxy -s stop
#重启
./CProxy -s reload -c CProxy.conf
or
./CProxy -s restart -c CProxy.conf
#状态(只打印 Pid)
./CProxy -s status