What is the best programming language to enable a proxy server?

Asked By 0 points N/A Posted on -
qa-featured

 

Hello,

How to code a simple proxy server c? To enable a proxy server what is the best programming language to use like c, c++, java and visual basic. Your suggestions and solutions will be a help for me to be able to start the project as soon as possible. I hope you can give me the best idea. Thank you

SHARE
Answered By 0 points N/A #179894

What is the best programming language to enable a proxy server?

qa-featured

Hey Isabella,

To create or to enable a proxy server, the best language is C. As C is the very basic language and can work with sockets and IP protocols.

Before start coding you should know what type of protocol you are aiming at.

After you've decided the protocol, then you should learn the sockets API.

Once you have done that, there are three major steps, you have to use poll/select-based loop, fork off per-session processes or use threads to shuffle data.

Hope this helps.

Related Questions