resurrect tcp proxy

This commit is contained in:
travis laduke 2022-12-05 15:33:01 -08:00
commit db1df58955
4 changed files with 330 additions and 1 deletions

7
tcp-proxy/Makefile Normal file
View file

@ -0,0 +1,7 @@
CXX=$(shell which clang++ g++ c++ 2>/dev/null | head -n 1)
all:
$(CXX) -O3 -fno-rtti -o tcp-proxy tcp-proxy.cpp
clean:
rm -f *.o tcp-proxy *.dSYM