C# and socks proxies?

Standard Toaster

Regular Member
Joined
Aug 29, 2009
Messages
342
Reaction score
191
Hey guys,

I've been using httpwebrequest for all of my bots. But now I realized that they don't support socks proxies?

What do you guys use to handle http requests?

Thanks.
 
I use raw sockets for everything.

use raw sockets for every request, it's much faster than webreq.

Thanks for the responses guys! I hear this all the time... raw sockets... but i dont where to start

Are there any resources to learn this sort of stuff? maybe some code examples? or existing helper libraries?
 
Thanks for the responses guys! I hear this all the time... raw sockets... but i dont where to start

meh, if speed is so important, then you shouldn't be using C#.

And sockets are just another layer of abstraction, you can still step back one to make it faster.
 
Back
Top