2008-05-24 16:05:49 +08:00
|
|
|
/* tinyproxy - A fast light-weight HTTP proxy
|
|
|
|
* Copyright (C) 2004 Robert James Kaes <rjkaes@users.sourceforge.net>
|
2004-08-14 04:19:50 +08:00
|
|
|
*
|
2008-05-24 16:05:49 +08:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
2004-08-14 04:19:50 +08:00
|
|
|
*
|
2008-05-24 16:05:49 +08:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2004-08-14 04:19:50 +08:00
|
|
|
*
|
2008-05-24 16:05:49 +08:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2004-08-14 04:19:50 +08:00
|
|
|
*/
|
|
|
|
|
2009-09-21 12:11:59 +08:00
|
|
|
/* See 'conf.c' for detailed information. */
|
2008-05-24 16:05:49 +08:00
|
|
|
|
2009-09-21 12:11:59 +08:00
|
|
|
#ifndef TINYPROXY_CONF_H
|
|
|
|
#define TINYPROXY_CONF_H
|
2004-08-14 04:19:50 +08:00
|
|
|
|
2009-11-09 06:41:21 +08:00
|
|
|
extern int load_config_file (const char *config_fname, struct config_s *conf);
|
2009-12-07 07:22:53 +08:00
|
|
|
void free_config (struct config_s *conf);
|
2004-08-14 04:19:50 +08:00
|
|
|
|
|
|
|
#endif
|