Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTTP proxy server

I am beginning work on a very basic HTTP proxy server written in C (Edit: something that just forwards my requests). At this point I am having difficulty in understanding how to proceed.

Any help would be beneficial.

like image 371
Alex Xander Avatar asked Nov 14 '09 15:11

Alex Xander


1 Answers

Take a look at micro_proxy. It implements all the basic features of an HTTP/HTTPS proxy, in only 260 lines of C code.

Another very simple implementation can be found at Proxy.

like image 83
AJ. Avatar answered Sep 21 '22 13:09

AJ.