< prev index next >

src/java.base/unix/native/libnet/DefaultProxySelector.c

Print this page
rev 52699 : 8214014: Remove vestiges of gopher: protocol proxy support

*** 57,68 **** * - /system/proxy/secure_host string * - /system/proxy/socks_port int * - /system/proxy/ftp_port int * - /system/proxy/secure_port int * - /system/proxy/no_proxy_for list - * - /system/proxy/gopher_host string - * - /system/proxy/gopher_port int * * The following keys are not used in the new gnome 3 * - /system/http_proxy/use_http_proxy * - /system/http_proxy/use_same_proxy */ --- 57,66 ----
*** 222,243 **** pport = (*my_get_int_func)(gconf_client, "/system/proxy/ftp_port", NULL); use_proxy = (phost != NULL && pport != 0); } /** - * GOPHER: - * /system/proxy/mode (string) [ "manual" means use proxy settings ] - * /system/proxy/gopher_host (string) - * /system/proxy/gopher_port (integer) - */ - if (strcasecmp(cproto, "gopher") == 0) { - phost = (*my_get_string_func)(gconf_client, "/system/proxy/gopher_host", NULL); - pport = (*my_get_int_func)(gconf_client, "/system/proxy/gopher_port", NULL); - use_proxy = (phost != NULL && pport != 0); - } - - /** * SOCKS: * /system/proxy/mode (string) [ "manual" means use proxy settings ] * /system/proxy/socks_host (string) * /system/proxy/socks_port (integer) */ --- 220,229 ----
< prev index next >