Skip to content

A simple TCP proxy written in C++ with (pretty much only) socket.h

License

Notifications You must be signed in to change notification settings

drednoot/simple_tcp_proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Simple TCP Proxy

C++ application that can redirect TCP requests, having practically no dependencies (only some standard C/C++ stuff)

Usage

proxy <proxy port> <server ip> <server port>
  • proxy port - the proxy will open on this port for others to connect
  • server ip, server port - server address for requests to redirect to

The proxy will also create log file log in the executable directory

Build

Requirements

  • linux (uses socket.h)
  • make
  • gcc
  • stdc++ (usually comes bundled with g++)

build steps

cd src
make

About

A simple TCP proxy written in C++ with (pretty much only) socket.h

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published