/*
 * h.config
 *
 * $Id: config,v 1.10 2000/02/08 23:56:33 joseph Exp $
 *
 */

#ifndef CONFIG_H
#define CONFIG_H

typedef enum
{
  links_all,
  links_host,
  links_dir,
  links_none
} conf_followlinks;

extern int config_maxfetchers;
extern int config_maxservers;
extern int config_linkdepth;
extern conf_followlinks config_inlineimages;
extern int config_inlineframes;
extern conf_followlinks config_links;
extern int config_showlog;

#define CONFIG_STRSIZE 100
extern char config_proxyname[3][CONFIG_STRSIZE];
extern char config_proxynotfor[CONFIG_STRSIZE];
extern int  config_proxyforunqualified;
extern int  config_openstatuswin;
extern char config_includefiles[256];
extern char config_excludefiles[256];
extern char config_localurlprefix[32];

int config_load( void );

#endif
