2 * OpenVPN -- An application to securely tunnel IP networks
3 * over a single TCP/UDP port, with support for SSL/TLS-based
4 * session authentication and key exchange,
5 * packet encryption, packet authentication, and
8 * Copyright (C) 2002-2005 OpenVPN Solutions LLC <info@openvpn.net>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2
12 * as published by the Free Software Foundation.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program (see the file COPYING included with this
21 * distribution); if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 #ifdef ENABLE_HTTP_PROXY
33 /* HTTP CONNECT authentication methods */
34 #define HTTP_AUTH_NONE 0
35 #define HTTP_AUTH_BASIC 1
36 #define HTTP_AUTH_NTLM 2
39 struct http_proxy_options
{
44 const char *auth_method_string
;
45 const char *auth_file
;
46 const char *http_version
;
47 const char *user_agent
;
50 struct http_proxy_info
{
53 struct http_proxy_options options
;
57 struct http_proxy_info
*new_http_proxy (const struct http_proxy_options
*o
,
60 void establish_http_proxy_passthru (struct http_proxy_info
*p
,
61 socket_descriptor_t sd
, /* already open to proxy */
62 const char *host
, /* openvpn server remote */
63 const int port
, /* openvpn server port */
64 struct buffer
*lookahead
,
65 volatile int *signal_received
);
67 uint8_t *make_base64_string2 (const uint8_t *str
, int str_len
, struct gc_arena
*gc
);
68 uint8_t *make_base64_string (const uint8_t *str
, struct gc_arena
*gc
);