A basic TCP proxy, written in C.
 
 
Go to file
Aadhavan Srinivasan d1f34083bf Replaced negative exit codes with positive ones or 'errno'
.gitignore Updated .gitignore
Makefile Added 'debug' target
README.md Added Usage section to README
TODO.txt Updated TODO.txt
easysock.c Replaced negative exit codes with positive ones or 'errno'
easysock.h Updated definition for 'create_remote' function
main.c Replaced negative exit codes with positive ones or 'errno'

README.md

basic-proxy [WIP]

A simple, basic TCP proxy, written in C.

This is a simple proxy that can receive connections on one port, and forward them to another.

It is written in C, and has a small file size and memory footprint.

Installation

TODO

Usage

./proxy <local-address> <local-port> <remote-address> <remote-port>