Creating a Simple HTTP Proxy in C

I'm a beginner programmer who wants to create a simple proxy server in C that redirects HTTP requests (via TCP). Are there any resources on the Internet that can help me get started? I have already reviewed the Bej Network Programming Guide, as it is highly recommended, but I find it a bit incomplete and difficult to follow. Any suggestion would be appreciated!

+5
source share
1 answer

Why reinvent the wheel? There is tinyproxy which is fully functional, open and free.

https://banu.com/tinyproxy/

+5
source

All Articles