From 534b464becb6c429b5976695bfe142690f45b779 Mon Sep 17 00:00:00 2001 From: James Bursa Date: Tue, 27 Jul 2004 15:49:28 +0000 Subject: [project @ 2004-07-27 15:49:28 by bursa] Implement proxy authentication. Bring templates in line with style guide (icon sizes and fill display fields), and remove dead icons. Clean up choices dialog code. Fix persistent dialog code. Make browser choices the default pane. svn path=/import/netsurf/; revision=1153 --- desktop/options.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'desktop/options.h') diff --git a/desktop/options.h b/desktop/options.h index a4f0de038..65fa59fc2 100644 --- a/desktop/options.h +++ b/desktop/options.h @@ -24,9 +24,15 @@ #ifndef _NETSURF_DESKTOP_OPTIONS_H_ #define _NETSURF_DESKTOP_OPTIONS_H_ +enum { OPTION_HTTP_PROXY_AUTH_NONE = 0, OPTION_HTTP_PROXY_AUTH_BASIC = 1, + OPTION_HTTP_PROXY_AUTH_NTLM = 2 }; + extern bool option_http_proxy; extern char *option_http_proxy_host; extern int option_http_proxy_port; +extern int option_http_proxy_auth; +extern char *option_http_proxy_auth_user; +extern char *option_http_proxy_auth_pass; extern int option_font_size; extern int option_font_min_size; extern char *option_accept_language; -- cgit v1.2.3