I am implementing a program which will capture web browsers GET request, analyze it and then redirects it to the proxy server. To do this I need to find out what are the default proxy settings for my internet connection in UBUNTU. I am using C. Any help would be appreciated.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can find all the proxy configuration stored by gnome in the GConf-2 keys :
all of them are stored in the /home/user_name/.gconf/ directory. You can access to their value with a call on command line to gconftool-2 or use the C bindings as explained here or there. |
|||
|
|