Draco's Weblog

My Personal Programming & Electronics Journal.

HTTPS Proxy Test in C

| Comments

I wanted to share my first contribution to Gist. It’s an HTTPS proxy tester using cURL library in C.

— Forked from mj.

To compile under FreeBSD using GCC:

1
$ gcc -Wall -L/usr/local/lib/ -I/usr/local/include/ -lcurl https-proxy-test.c -o https-proxy-test

Usage: https-proxy-test <ip:port>

1
$ ./https-proxy-test 123.123.123.123:8080

Comments