├── LICENSE ├── README.md ├── proxy.conf └── src ├── Makefile ├── ServerArgsBase.cpp ├── ServerArgsBase.h ├── args.cpp ├── args.h ├── buffer.h ├── common.cpp ├── common.h ├── faraway_proxy.cpp ├── io_service_pool.cpp ├── io_service_pool.h ├── ip_proxy.cpp ├── ip_proxy.h ├── shared_data.cpp ├── shared_data.h ├── tcp_proxy.cpp ├── tcp_proxy.h ├── trackerr.cpp ├── trackerr.h ├── type.cpp ├── type.h ├── udp_proxy.cpp ├── udp_proxy.h ├── watch.cpp ├── watch.h ├── xassert.h ├── xdaemon.cpp ├── xdaemon.h ├── xfstream.h ├── xmisc.cpp ├── xmisc.h ├── xpath.h ├── xrandom.cpp ├── xrandom.h ├── xthread.cpp ├── xthread.h ├── xtokens.h └── xttime.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/README.md -------------------------------------------------------------------------------- /proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/proxy.conf -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/ServerArgsBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/ServerArgsBase.cpp -------------------------------------------------------------------------------- /src/ServerArgsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/ServerArgsBase.h -------------------------------------------------------------------------------- /src/args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/args.cpp -------------------------------------------------------------------------------- /src/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/args.h -------------------------------------------------------------------------------- /src/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/buffer.h -------------------------------------------------------------------------------- /src/common.cpp: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | namespace proxy_ns 4 | { 5 | 6 | } 7 | 8 | -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/common.h -------------------------------------------------------------------------------- /src/faraway_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/faraway_proxy.cpp -------------------------------------------------------------------------------- /src/io_service_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/io_service_pool.cpp -------------------------------------------------------------------------------- /src/io_service_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/io_service_pool.h -------------------------------------------------------------------------------- /src/ip_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/ip_proxy.cpp -------------------------------------------------------------------------------- /src/ip_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/ip_proxy.h -------------------------------------------------------------------------------- /src/shared_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/shared_data.cpp -------------------------------------------------------------------------------- /src/shared_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/shared_data.h -------------------------------------------------------------------------------- /src/tcp_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/tcp_proxy.cpp -------------------------------------------------------------------------------- /src/tcp_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/tcp_proxy.h -------------------------------------------------------------------------------- /src/trackerr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/trackerr.cpp -------------------------------------------------------------------------------- /src/trackerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/trackerr.h -------------------------------------------------------------------------------- /src/type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/type.cpp -------------------------------------------------------------------------------- /src/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/type.h -------------------------------------------------------------------------------- /src/udp_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/udp_proxy.cpp -------------------------------------------------------------------------------- /src/udp_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/udp_proxy.h -------------------------------------------------------------------------------- /src/watch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/watch.cpp -------------------------------------------------------------------------------- /src/watch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/watch.h -------------------------------------------------------------------------------- /src/xassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/xassert.h -------------------------------------------------------------------------------- /src/xdaemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/xdaemon.cpp -------------------------------------------------------------------------------- /src/xdaemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/xdaemon.h -------------------------------------------------------------------------------- /src/xfstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/xfstream.h -------------------------------------------------------------------------------- /src/xmisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/xmisc.cpp -------------------------------------------------------------------------------- /src/xmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/xmisc.h -------------------------------------------------------------------------------- /src/xpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/xpath.h -------------------------------------------------------------------------------- /src/xrandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/xrandom.cpp -------------------------------------------------------------------------------- /src/xrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/xrandom.h -------------------------------------------------------------------------------- /src/xthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/xthread.cpp -------------------------------------------------------------------------------- /src/xthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/xthread.h -------------------------------------------------------------------------------- /src/xtokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/xtokens.h -------------------------------------------------------------------------------- /src/xttime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MengRao/TCP-UDP-Proxy/HEAD/src/xttime.h --------------------------------------------------------------------------------