• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright (C) 2007-2008 The Android Open Source Project
2 **
3 ** This software is licensed under the terms of the GNU General Public
4 ** License version 2, as published by the Free Software Foundation, and
5 ** may be copied, distributed, and modified under those terms.
6 **
7 ** This program is distributed in the hope that it will be useful,
8 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
9 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10 ** GNU General Public License for more details.
11 */
12 #ifndef _PROXY_HTTP_H
13 #define _PROXY_HTTP_H
14 
15 #include "proxy_common.h"
16 
17 extern int
18 proxy_http_setup( const char*         servername,
19                   int                 servernamelen,
20                   int                 serverport,
21                   int                 num_options,
22                   const ProxyOption*  options );
23 
24 #endif /* END */
25