Reputation: 1
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.
Upvotes: 0
Views: 3665
Reputation: 80771
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.
Upvotes: 1