implemented support for multiple proxies

This commit is contained in:
Manfred Klimt 2018-06-28 13:25:11 +02:00
parent 82514f2b52
commit 71d7f96944
35 changed files with 156 additions and 111 deletions

19
proxy/Makefile Normal file
View file

@ -0,0 +1,19 @@
PROGRAM=wanproxy
SRCS+= wanproxy.cc
SRCS+= wanproxy_config.cc
SRCS+= wanproxy_config_class_codec.cc
SRCS+= wanproxy_config_class_interface.cc
SRCS+= wanproxy_config_class_peer.cc
SRCS+= wanproxy_config_class_proxy.cc
SRCS+= wanproxy_config_type_codec.cc
SRCS+= wanproxy_config_type_compressor.cc
SRCS+= wanproxy_config_type_proxy_type.cc
SRCS+= wanproxy_config_type_proxy_role.cc
SRCS+= proxy_listener.cc
SRCS+= proxy_connector.cc
TOPDIR=..
USE_LIBS=common common/thread common/time common/uuid config crypto event http io io/net io/socket ssh xcodec xcodec/cache/coss zlib
include ${TOPDIR}/common/program.mk