#define yy_create_buffer conf__create_buffer
#define yy_delete_buffer conf__delete_buffer
#define yy_scan_buffer conf__scan_buffer
#define yy_scan_string conf__scan_string
#define yy_scan_bytes conf__scan_bytes
#define yy_flex_debug conf__flex_debug
#define yy_init_buffer conf__init_buffer
#define yy_flush_buffer conf__flush_buffer
#define yy_load_buffer_state conf__load_buffer_state
#define yy_switch_to_buffer conf__switch_to_buffer
#define yyin conf_in
#define yyleng conf_leng
#define yylex conf_lex
#define yyout conf_out
#define yyrestart conf_restart
#define yytext conf_text

#line 19 "conf_lex.c"
/* A lexical scanner generated by flex */

/* Scanner skeleton version:
 * $Header: /cvs/root/flex/flex/skel.c,v 1.2 2004/05/07 00:28:17 jkh Exp $
 */

#define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 5

#include <stdio.h>


/* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
#ifdef c_plusplus
#ifndef __cplusplus
#define __cplusplus
#endif
#endif


#ifdef __cplusplus

#include <stdlib.h>
#include <unistd.h>

/* Use prototypes in function declarations. */
#define YY_USE_PROTOS

/* The "const" storage-class-modifier is valid. */
#define YY_USE_CONST

#else	/* ! __cplusplus */

#if __STDC__

#define YY_USE_PROTOS
#define YY_USE_CONST

#endif	/* __STDC__ */
#endif	/* ! __cplusplus */

#ifdef __TURBOC__
 #pragma warn -rch
 #pragma warn -use
#include <io.h>
#include <stdlib.h>
#define YY_USE_CONST
#define YY_USE_PROTOS
#endif

#ifdef YY_USE_CONST
#define yyconst const
#else
#define yyconst
#endif


#ifdef YY_USE_PROTOS
#define YY_PROTO(proto) proto
#else
#define YY_PROTO(proto) ()
#endif

/* Returned upon end-of-file. */
#define YY_NULL 0

/* Promotes a possibly negative, possibly signed char to an unsigned
 * integer for use as an array index.  If the signed char is negative,
 * we want to instead treat it as an 8-bit unsigned char, hence the
 * double cast.
 */
#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)

/* Enter a start condition.  This macro really ought to take a parameter,
 * but we do it the disgusting crufty way forced on us by the ()-less
 * definition of BEGIN.
 */
#define BEGIN yy_start = 1 + 2 *

/* Translate the current start state into a value that can be later handed
 * to BEGIN to return to the state.  The YYSTATE alias is for lex
 * compatibility.
 */
#define YY_START ((yy_start - 1) / 2)
#define YYSTATE YY_START

/* Action number for EOF rule of a given start state. */
#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)

/* Special action meaning "start processing a new file". */
#define YY_NEW_FILE yyrestart( yyin )

#define YY_END_OF_BUFFER_CHAR 0

/* Size of default input buffer. */
#define YY_BUF_SIZE 16384

typedef struct yy_buffer_state *YY_BUFFER_STATE;

extern int yyleng;
extern FILE *yyin, *yyout;

#define EOB_ACT_CONTINUE_SCAN 0
#define EOB_ACT_END_OF_FILE 1
#define EOB_ACT_LAST_MATCH 2

/* The funky do-while in the following #define is used to turn the definition
 * int a single C statement (which needs a semi-colon terminator).  This
 * avoids problems with code like:
 *
 * 	if ( condition_holds )
 *		yyless( 5 );
 *	else
 *		do_something_else();
 *
 * Prior to using the do-while the compiler would get upset at the
 * "else" because it interpreted the "if" statement as being all
 * done when it reached the ';' after the yyless() call.
 */

/* Return all but the first 'n' matched characters back to the input stream. */

#define yyless(n) \
	do \
		{ \
		/* Undo effects of setting up yytext. */ \
		*yy_cp = yy_hold_char; \
		YY_RESTORE_YY_MORE_OFFSET \
		yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \
		YY_DO_BEFORE_ACTION; /* set up yytext again */ \
		} \
	while ( 0 )

#define unput(c) yyunput( c, yytext_ptr )

/* The following is because we cannot portably get our hands on size_t
 * (without autoconf's help, which isn't available because we want
 * flex-generated scanners to compile on their own).
 */
typedef unsigned int yy_size_t;


struct yy_buffer_state
	{
	FILE *yy_input_file;

	char *yy_ch_buf;		/* input buffer */
	char *yy_buf_pos;		/* current position in input buffer */

	/* Size of input buffer in bytes, not including room for EOB
	 * characters.
	 */
	yy_size_t yy_buf_size;

	/* Number of characters read into yy_ch_buf, not including EOB
	 * characters.
	 */
	int yy_n_chars;

	/* Whether we "own" the buffer - i.e., we know we created it,
	 * and can realloc() it to grow it, and should free() it to
	 * delete it.
	 */
	int yy_is_our_buffer;

	/* Whether this is an "interactive" input source; if so, and
	 * if we're using stdio for input, then we want to use getc()
	 * instead of fread(), to make sure we stop fetching input after
	 * each newline.
	 */
	int yy_is_interactive;

	/* Whether we're considered to be at the beginning of a line.
	 * If so, '^' rules will be active on the next match, otherwise
	 * not.
	 */
	int yy_at_bol;

	/* Whether to try to fill the input buffer when we reach the
	 * end of it.
	 */
	int yy_fill_buffer;

	int yy_buffer_status;
#define YY_BUFFER_NEW 0
#define YY_BUFFER_NORMAL 1
	/* When an EOF's been seen but there's still some text to process
	 * then we mark the buffer as YY_EOF_PENDING, to indicate that we
	 * shouldn't try reading from the input source any more.  We might
	 * still have a bunch of tokens to match, though, because of
	 * possible backing-up.
	 *
	 * When we actually see the EOF, we change the status to "new"
	 * (via yyrestart()), so that the user can continue scanning by
	 * just pointing yyin at a new input file.
	 */
#define YY_BUFFER_EOF_PENDING 2
	};

static YY_BUFFER_STATE yy_current_buffer = 0;

/* We provide macros for accessing buffer states in case in the
 * future we want to put the buffer states in a more general
 * "scanner state".
 */
#define YY_CURRENT_BUFFER yy_current_buffer


/* yy_hold_char holds the character lost when yytext is formed. */
static char yy_hold_char;

static int yy_n_chars;		/* number of characters read into yy_ch_buf */


int yyleng;

/* Points to current character in buffer. */
static char *yy_c_buf_p = (char *) 0;
static int yy_init = 1;		/* whether we need to initialize */
static int yy_start = 0;	/* start state number */

/* Flag which is used to allow yywrap()'s to do buffer switches
 * instead of setting up a fresh yyin.  A bit of a hack ...
 */
static int yy_did_buffer_switch_on_eof;

void yyrestart YY_PROTO(( FILE *input_file ));

void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer ));
void yy_load_buffer_state YY_PROTO(( void ));
YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size ));
void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b ));
void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file ));
void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b ));
#define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer )

YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size ));
YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str ));
YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len ));

static void *yy_flex_alloc YY_PROTO(( yy_size_t ));
static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t ));
static void yy_flex_free YY_PROTO(( void * ));

#define yy_new_buffer yy_create_buffer

#define yy_set_interactive(is_interactive) \
	{ \
	if ( ! yy_current_buffer ) \
		yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
	yy_current_buffer->yy_is_interactive = is_interactive; \
	}

#define yy_set_bol(at_bol) \
	{ \
	if ( ! yy_current_buffer ) \
		yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
	yy_current_buffer->yy_at_bol = at_bol; \
	}

#define YY_AT_BOL() (yy_current_buffer->yy_at_bol)


#define YY_USES_REJECT

#define yywrap() 1
#define YY_SKIP_YYWRAP
typedef unsigned char YY_CHAR;
FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
typedef int yy_state_type;
extern char *yytext;
#define yytext_ptr yytext

static yy_state_type yy_get_previous_state YY_PROTO(( void ));
static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state ));
static int yy_get_next_buffer YY_PROTO(( void ));
static void yy_fatal_error YY_PROTO(( yyconst char msg[] ));

/* Done after the current pattern has been matched and before the
 * corresponding action - sets up yytext.
 */
#define YY_DO_BEFORE_ACTION \
	yytext_ptr = yy_bp; \
	yyleng = (int) (yy_cp - yy_bp); \
	yy_hold_char = *yy_cp; \
	*yy_cp = '\0'; \
	yy_c_buf_p = yy_cp;

#define YY_NUM_RULES 69
#define YY_END_OF_BUFFER 70
static yyconst short int yy_acclist[488] =
    {   0,
       70,   68,   69,    1,   68,   69,   66,   68,   69,   68,
       69,   68,   69,   68,   69,   51,   68,   69,   61,   68,
       69,   61,   68,   69,   68,   69,   56,   57,   61,   68,
       69,   68,   69,   61,   68,   69,   61,   68,   69,   61,
       68,   69,   61,   68,   69,   61,   68,   69,   61,   68,
       69,   61,   68,   69,   61,   68,   69,   61,   68,   69,
       61,   68,   69,   61,   68,   69,   61,   68,   69,   61,
       68,   69,   61,   68,   69,   61,   68,   69,   61,   68,
       69,   61,   68,   69,   61,   68,   69,   68,   69,   64,
       68,   69,   65,   68,   69,   68,   69,    1,    2,   61,

       57,   61,   63,   61,   56,   57,   61,   61,   57,   61,
       57,   61,   60,   61,   61,   61,   61,   61,   61,   54,
       61,   61,   61,   61,   61,   61,   61,   61,   61,   61,
       61,   61,   61,   61,   61,   61,   61,   61,   61,   61,
       61,   61,   61,   61,   61,   61,   61,   61,   61,   61,
       61,   61,   67,   63,   58,   55,   55,   58,   63,   61,
       56,   57,   61,   60,   60,   47,   61,   61,   40,   61,
       61,   61,   61,   61,   61,   61,   61,   61,   61,   61,
       61,   61,   61,   61,   61,   61,   61,   27,   61,   61,
       61,   61,   61,   61,   61,   61,   61,   61,   61,   61,

       61,   61,   61,   61,   61,   61,   61,   61,   61,   62,
       62,   63,   58,   63,   61,   61,   56,   57,   61,   60,
        3,   61,   61,   61,   25,   61,   61,   61,   61,   61,
       52,   61,   61,   61,   61,   61,    4,   61,   61,   61,
       23,   61,   61,   61,   61,   61,   61,   36,   61,   61,
        6,   61,   61,   46,   61,   61,    5,   61,   61,   61,
       61,   61,   61,   61,   61,   61,   33,   61,   61,   61,
       63,   58,   61,   61,    3,   61,   61,   61,   39,   61,
       61,   61,   61,   61,   26,   61,   61,   61,    4,   61,
       61,   61,   61,   61,   61,   61,   61,   14,   61,    6,

       61,   15,   61,    5,   61,   61,   61,   61,   61,   61,
       61,   61,   22,   61,   33,   61,   61,   61,   61,   61,
       61,   61,   61,   37,   61,   20,   61,   43,   61,   61,
       61,   61,   61,   61,   61,    8,   61,   61,   61,   10,
       61,   61,   61,   53,   61,   61,   35,   61,   61,   32,
       61,   61,   61,   61,   61,   61,   61,   61,   59,   61,
       61,   61,   61,   50,   61,   61,   43,   61,   61,   61,
       61,   61,   61,   61,   61,   61,   61,   28,   61,   35,
       61,   32,   61,   61,   61,   61,   42,   61,   17,   61,
       61,   59,   61,   61,   61,   61,   29,   61,   41,   61,

       61,   61,   61,    9,   61,   61,   61,   38,   61,   34,
       61,   28,   21,   61,   61,   44,   61,   61,   16,   61,
       42,   61,   59,   61,    7,   61,   49,   61,   61,   29,
       41,   61,   61,   24,   61,    9,   61,   61,   61,   44,
       61,   48,   61,    7,   49,   61,   61,   61,   19,   61,
       11,   61,   61,   61,   48,   61,   61,   61,   30,   61,
       45,   61,   61,   61,   61,   31,   61,   30,   45,   13,
       61,   61,   12,   61,   31,   61,   61,   61,   61,   61,
       61,   61,   61,   61,   61,   18,   61
    } ;

static yyconst short int yy_accept[388] =
    {   0,
        1,    1,    1,    1,    1,    2,    4,    7,   10,   12,
       14,   16,   19,   22,   25,   27,   32,   34,   37,   40,
       43,   46,   49,   52,   55,   58,   61,   64,   67,   70,
       73,   76,   79,   82,   85,   88,   90,   93,   96,   98,
       99,   99,   99,   99,   99,   99,   99,  100,  100,  100,
      101,  103,  104,  105,  108,  108,  109,  111,  113,  113,
      114,  115,  116,  117,  118,  119,  120,  122,  123,  124,
      125,  126,  127,  128,  129,  130,  131,  132,  133,  134,
      135,  136,  137,  138,  139,  140,  141,  142,  143,  144,
      145,  146,  147,  148,  149,  150,  151,  152,  153,  153,

      154,  154,  154,  155,  155,  156,  157,  157,  158,  158,
      158,  159,  160,  161,  164,  164,  165,  166,  168,  169,
      171,  172,  173,  174,  175,  176,  177,  178,  179,  180,
      181,  182,  183,  184,  185,  186,  187,  188,  190,  191,
      192,  193,  194,  195,  196,  197,  198,  199,  200,  201,
      202,  203,  204,  205,  206,  207,  208,  209,  210,  211,
      212,  213,  214,  214,  215,  216,  217,  220,  221,  223,
      224,  225,  227,  228,  229,  230,  231,  233,  234,  235,
      236,  237,  239,  240,  241,  243,  244,  245,  246,  247,
      248,  250,  251,  253,  254,  256,  257,  259,  260,  261,

      262,  263,  264,  265,  266,  267,  269,  270,  271,  272,
      273,  274,  275,  276,  277,  278,  279,  281,  282,  283,
      284,  285,  287,  288,  289,  290,  291,  292,  293,  294,
      295,  296,  297,  298,  300,  301,  302,  304,  305,  306,
      307,  308,  309,  310,  311,  312,  313,  315,  316,  317,
      318,  319,  320,  321,  322,  323,  324,  326,  328,  330,
      331,  332,  333,  334,  335,  336,  338,  339,  340,  342,
      343,  344,  346,  347,  349,  350,  352,  353,  354,  355,
      356,  357,  358,  359,  361,  362,  363,  364,  366,  367,
      368,  369,  370,  371,  372,  373,  374,  375,  376,  377,

      378,  380,  381,  382,  383,  384,  385,  386,  387,  389,
      391,  392,  394,  395,  396,  397,  399,  401,  402,  403,
      404,  406,  407,  408,  410,  412,  413,  415,  416,  418,
      419,  421,  422,  423,  425,  427,  429,  430,  431,  432,
      433,  434,  436,  437,  438,  439,  440,  441,  442,  444,
      445,  446,  447,  448,  449,  451,  453,  454,  455,  456,
      457,  458,  459,  461,  463,  464,  465,  466,  468,  469,
      470,  472,  473,  475,  476,  477,  478,  479,  480,  481,
      482,  483,  484,  485,  486,  488,  488
    } ;

static yyconst int yy_ec[256] =
    {   0,
        1,    1,    1,    1,    1,    1,    1,    1,    2,    3,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    2,    4,    5,    6,    4,    7,    4,    4,    8,
        8,    9,    4,    8,   10,   11,   12,   13,   13,   13,
       13,   13,   13,   14,   13,   13,   13,   15,    8,    8,
        4,    8,    4,   16,   17,   18,   19,   20,   21,   22,
       23,   24,   25,   26,   27,   28,   29,   30,   31,   32,
       33,   34,   35,   36,   37,   38,   39,   40,   41,   42,
        8,   43,    8,    4,   44,    4,   17,   18,   19,   45,

       21,   22,   23,   46,   25,   26,   27,   28,   47,   30,
       31,   32,   33,   34,   48,   36,   37,   38,   49,   40,
       41,   42,   50,    4,   51,    4,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,

        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1
    } ;

static yyconst int yy_meta[52] =
    {   0,
        1,    1,    2,    3,    4,    3,    5,    4,    3,    6,
        6,    3,    7,    7,    8,    3,    7,    7,    7,    7,
        7,    7,    9,    9,    9,    9,    9,    9,    9,    9,
        9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
        9,    9,    4,    6,    7,    9,    9,    9,    9,    3,
        3
    } ;

static yyconst short int yy_base[405] =
    {   0,
        0,    0, 1133, 1132, 1143, 1146, 1140, 1146, 1125,   51,
       56, 1124,   96,  144,   49,  192, 1124,  240,   47,   49,
      274,   76,   95,  316,   56,   63,   45,   57,   83,  103,
       97,   49,  124,   72,  109, 1135, 1121, 1120,  367, 1133,
     1118,    0, 1128,  134, 1127, 1128, 1146,  410,  453, 1096,
      492,  148,  152,   41, 1114,  148,  155, 1094, 1112,  112,
      244,  251,   73,  135,  108,  143,  279,  281,  232,  123,
      156,  150,  310,  144,  211,  242,  244,  107,  249,  252,
      283,  314,  248,  301, 1092,  157,  155,  278,  293,  111,
      217,   55,  305,  323,  308,  253, 1091,  311, 1121, 1146,

     1111,  541,  584,  627,    0, 1146,  359,  349, 1117,  358,
      678,  371,  375,  300,    0,  383,  384, 1087,  386, 1086,
      342,  358,  337,  402,  361, 1085,  383,  374,  362,  382,
      403,  394,  404,  363,  400,  367,  411, 1084,  429,  415,
      443,  412, 1083,  418,  436,  446,  437,  444,  445,  416,
      451,  457,  448,  465,  466, 1082,  475,  454, 1146, 1099,
      481,  729,  777, 1098,  484,  497,  501,    0,  468,  483,
      486, 1079,  531,  482,  501,  496, 1078,  511,  513,  494,
      520,  514,  473,  535, 1077,  524,  541,  491,  537,  544,
     1076,  540,  548,  545, 1075,  547,  557, 1074,  560,  546,

      567,  570,  561,  572,  573,  578,  579,  581,  603,  825,
      610,  603, 1146,  606,  591,  592,  620,  617,  616,  613,
      619, 1065,  628,  640, 1146,  631,  627,  626,  638,  664,
      658,  672,  677, 1056, 1146,  635, 1047, 1146,  661,  680,
      666,  667,  671, 1043,  633,  670, 1009, 1146,  674,  684,
      706,  712,  690,  714,  713,  722, 1000,  997,  698,  723,
      729,  721,  732,  742,  725,  987,  736,  730,  973,  734,
      724,  969,  756,  754,  951,  776,  765,  777,  779,  780,
      767,  774,  771,  802,  808,  768,  804,  948,  944, 1146,
      814,  773,  683,  824,  825,  787,  941,  812,  815,  819,

      839, 1146,  740, 1146,  792,  935,  838,  830,  846,  930,
      843,  853,  850,  845,  861,  859,  868,  852,  823,  783,
      870,  869,  872,  720,  637, 1146,  502,  860,  874,  877,
      455, 1146,  864,  401,  884,  886,  879, 1146, 1146,  882,
      889,  373, 1146,  892,  891,  895, 1146,  899,  900, 1146,
     1146,  906,  901,  588,  317,  299,  897,  281, 1146,  905,
      907,  911,  932,  921,  915,  908,  784,  923, 1146, 1146,
      216,  920,  147, 1146,   84,  933,  928,  925,  828,  936,
      927,  940,  937,  942,   26, 1146,  974,  983,  992,  999,
     1002, 1010, 1019, 1023, 1032, 1041, 1048, 1057, 1066, 1071,

     1079, 1088, 1091, 1098
    } ;

static yyconst short int yy_def[405] =
    {   0,
      386,    1,    1,    1,  386,  386,  386,  386,  387,  388,
      389,  387,  390,  390,  387,  386,  391,  390,   18,   18,
       18,   18,   18,  390,   24,   24,   24,   24,   24,   24,
       24,   24,   24,   24,   24,  392,  387,  387,  393,  386,
      387,  394,  395,  396,  397,  398,  386,  389,  399,   24,
       24,  387,   24,   16,  391,   18,   18,   24,  391,  400,
       18,   18,   24,   24,   24,   24,   18,   18,   24,   24,
       24,   24,   18,   24,   24,   24,   24,   24,   24,   24,
       24,   24,   24,   24,   24,   24,   24,   24,   24,   24,
       24,   24,   24,   24,   24,   24,   24,   24,  392,  386,

      401,  393,  393,  402,  394,  386,  396,  397,  397,  397,
      399,  387,   24,   16,  403,  400,  400,   24,   18,   24,
       24,   24,   24,   18,   24,   24,   24,   24,   24,   24,
       24,   24,   24,   24,   24,   24,   24,   24,   24,   24,
       24,   24,   24,   24,   24,   24,   24,   24,   24,   24,
       24,   24,   24,   24,   24,   24,   24,   24,  386,  387,
      103,  402,  404,  387,   24,   24,   16,  403,   24,   24,
       24,   24,   18,   24,   24,   24,   24,   24,   24,   24,
       24,   24,   24,   24,   24,   24,   24,   24,   24,   24,
       24,   24,   24,   24,   24,   24,   24,   24,   24,   24,

       24,   24,   24,   24,   24,   24,   24,   24,  103,  404,
       24,   24,  386,   24,   24,   24,   24,   24,   24,   24,
       24,   24,   24,   24,  386,   24,   24,   24,   24,   24,
       24,   24,   24,   24,  386,   24,   24,  386,   24,   24,
       24,   24,   24,   24,   24,   24,   24,  386,   24,   24,
       24,   24,   24,   24,   24,   24,   24,   24,   24,   24,
       24,   24,   24,   24,   24,   24,   24,   24,   24,   24,
       24,   24,   24,   24,   24,   24,   24,   24,   24,   24,
       24,   24,   24,   24,   24,   24,   24,   24,   24,  386,
       24,   24,   24,   24,   24,   24,   24,   24,   24,   24,

       24,  386,   24,  386,   24,   24,   24,   24,   24,   24,
       24,   24,   24,   24,   24,   24,   24,   24,   24,   24,
       24,   24,   24,   24,   24,  386,   24,   24,   24,   24,
       24,  386,   24,   24,   24,   24,   24,  386,  386,   24,
       24,   24,  386,   24,   24,   24,  386,   24,   24,  386,
      386,   24,   24,   24,   24,   24,   24,   24,  386,   24,
       24,   24,   24,   24,   24,   24,   24,   24,  386,  386,
       24,   24,   24,  386,   24,   24,   24,   24,   24,   24,
       24,   24,   24,   24,   24,    0,  386,  386,  386,  386,
      386,  386,  386,  386,  386,  386,  386,  386,  386,  386,

      386,  386,  386,  386
    } ;

static yyconst short int yy_nxt[1198] =
    {   0,
        6,    7,    8,    9,   10,   11,    9,    6,   12,   13,
       14,   15,   16,   16,   17,    6,   18,   19,   20,   21,
       22,   23,   24,   14,   14,   14,   14,   25,   26,   27,
       14,   28,   29,   30,   31,   32,   33,   34,   35,   14,
       14,   14,   36,   14,   21,   14,   26,   31,   35,   37,
       38,   43,   43,  114,  114,   45,   46,   46,   47,   50,
       46,   52,   52,   46,   42,   56,   56,   56,   56,   93,
       46,   49,   78,   94,   65,   82,   50,   83,   50,   66,
       79,   84,   50,   50,  152,   50,   80,   85,   50,   50,
       50,   56,   97,   56,   73,   56,   50,   81,   46,   41,

      120,   41,   41,   50,   41,   50,   50,   41,   51,   51,
       81,   42,   50,   56,   56,   74,   50,  376,  115,   86,
       56,   87,   75,   88,  122,   89,  117,   90,   76,  150,
       50,   50,   98,   91,   43,   43,   50,   92,  108,   56,
       50,   50,   50,   89,   50,   41,   41,   41,  135,   41,
       41,  127,   41,   95,   98,   41,   50,   50,   96,   42,
      112,  112,  123,   42,  113,  113,   56,   56,   50,  127,
      121,   96,  128,   56,   56,   50,   50,   50,  129,  131,
       50,  146,   50,   50,   50,   50,  147,  123,   50,   50,
       50,   50,   56,   41,   41,   41,  129,   41,   41,   56,

       41,   50,   53,   41,   54,   54,   55,   42,   56,   56,
       56,   56,   56,   56,   50,   50,   50,   50,   50,   50,
       50,   50,   50,   50,   50,   50,   50,   50,   50,   50,
       50,   50,   50,   50,  151,   50,   57,   58,   58,   58,
       58,   41,   41,   41,   50,   41,   41,  132,   41,   50,
       50,   41,   56,   56,   55,   42,   56,   56,   61,   62,
       56,   56,   56,   56,  134,   50,  126,   63,  143,   56,
      119,  118,  133,  156,  137,   50,   64,   50,   50,  126,
       50,   50,   50,  136,   62,   50,   50,   50,   56,   41,
       41,   67,   56,   56,   68,  119,  136,   56,   56,   56,

       56,   50,  124,   69,   70,  138,   50,   71,  125,  148,
       72,   50,  167,  167,  364,   50,   50,   50,   56,   41,
      144,   41,   41,   56,   41,   56,   50,   41,   56,   56,
      139,   42,   50,  140,   50,  158,  149,   50,   50,  153,
      130,   50,  155,  141,   50,  144,   50,   50,  142,   77,
       50,  154,  153,  110,   56,  155,   50,  172,  140,   43,
       43,  142,  110,  108,  163,   41,   41,  101,  101,  154,
       50,  101,  170,  163,  101,   50,  171,  174,   41,  103,
      103,  101,  104,  164,  164,  165,   42,  166,  166,  115,
      115,   50,  177,  178,   50,   50,   50,  117,  117,  176,

       50,  179,  185,  183,   56,   56,   50,   50,   50,  101,
       46,   46,   47,   50,   46,   50,   50,   46,  173,  169,
       56,   56,   50,  180,   46,   49,  179,   50,  181,   50,
       56,  186,  182,   50,   50,  189,   50,   50,   50,  194,
      184,  181,  200,  192,   50,   50,   56,  187,  190,   50,
      182,   50,   46,   46,   46,   47,   46,   46,   46,   46,
       46,   46,   50,  191,   46,  188,  196,   46,   46,   50,
       50,  195,  197,  199,  198,  202,   50,   50,   50,   50,
      201,   50,  213,  203,   50,  204,  205,   50,   50,  208,
       50,  199,  207,  209,  209,   46,  211,  211,   50,   50,

      226,   50,   46,   46,   51,   51,   50,  165,   50,  212,
      212,   50,  215,  167,  167,   50,   50,   50,  218,   50,
      219,  214,  217,  223,   50,   50,  230,   50,  225,   50,
       50,  214,  220,  222,   50,   50,   58,   58,   58,   58,
       58,  101,  101,  224,   50,  101,   50,   50,  101,   56,
       56,  227,  160,   50,  221,  101,  104,   50,   50,  229,
      233,  234,  235,  228,  231,  224,  241,  216,   50,  236,
       50,  238,  232,   50,   50,   56,  240,   50,   50,   50,
       50,   50,  237,  101,  101,  101,  243,  242,  101,  245,
       50,  101,  248,   50,   50,  160,  161,  161,  101,  104,

       50,  250,  246,   50,  244,   50,   50,  245,  247,  249,
      362,   50,   50,  165,   50,  102,  102,  244,  254,  255,
      251,   50,  252,  252,   50,   50,  101,  101,  101,  253,
      101,  101,  101,  101,  101,  101,   50,  260,  159,   50,
      256,  101,  101,   50,  258,  259,  261,  263,  262,   50,
       50,  253,   50,   50,  257,  265,  264,  267,  268,   50,
       50,   50,  273,  280,   50,  266,   50,  257,   50,  101,
       50,   50,  263,   50,  270,  266,  101,  101,   46,   46,
       47,   46,   46,   46,   46,   46,   46,  269,  271,   46,
      278,   50,   46,   46,   50,  272,  274,   50,  275,   50,

       50,  276,  277,   50,   50,   50,  281,   50,  282,  269,
       50,  283,  290,   50,  286,  278,   50,   50,  284,  284,
       46,  282,  251,   50,  285,  285,  318,   46,   46,  101,
      101,   50,  101,  101,  101,  101,  101,  101,  287,   50,
      159,  289,  300,  101,  101,   50,   50,   50,  288,  292,
      291,  293,  294,   50,   50,   50,   50,   50,   50,  296,
      297,  295,   50,   50,  298,   50,  289,   50,  302,   50,
      327,  101,  296,   50,  299,   50,  301,  298,  101,  101,
      109,  110,  109,  109,  109,  109,  295,   50,  109,   50,
      304,  109,  109,  305,  310,  311,  306,  307,   50,  308,

       50,   50,  309,  313,   50,  317,   50,   50,  328,   50,
       50,  305,   50,   50,  312,  312,  342,   50,  251,  109,
       50,  306,  321,  373,  308,   50,  109,  109,  109,  110,
      109,  109,  109,  109,  316,   50,  109,   50,  314,  109,
      109,   50,  325,  319,  320,   50,  323,   50,   50,  324,
      331,  314,   50,  326,  330,  380,  341,   50,   50,  323,
      332,   50,  324,   50,  325,  334,  334,  109,  319,  320,
      335,   50,   50,  338,  109,  109,   50,  333,   50,   50,
      336,  337,  339,   50,  343,   50,   50,  340,  347,  344,
      333,  345,   50,   50,   50,  346,  348,   50,  350,  349,

      351,   50,   50,   50,  352,   50,  353,   50,  356,  354,
       50,  355,   50,  357,  359,   50,  345,   50,  358,   50,
      363,  348,   50,  365,   50,   50,  360,  366,   50,  361,
       50,  367,   50,   50,   50,  370,  355,  374,   50,   50,
       50,   50,  363,  358,   50,  368,  369,  361,   50,  377,
      371,  372,  381,   50,   50,  375,   50,  378,   50,  379,
       50,   50,  382,   50,  383,   50,   50,  384,  329,   50,
       50,  385,  379,   50,  322,   50,   41,  315,   41,   41,
       41,   50,   41,   44,  303,   44,   44,   44,   44,   44,
       44,   44,   48,   48,   48,   48,   48,   48,   48,   48,

       48,   50,   50,   50,   50,   50,   50,   50,   59,   59,
       99,   99,   99,   99,   99,   99,   99,   99,   99,  102,
       50,  102,  102,  102,  102,  102,  102,  102,  105,  105,
       50,  105,   43,   50,   43,   43,   43,   43,   43,   43,
       43,  107,   50,  107,  107,  107,  107,  107,  107,  107,
      109,  109,  109,  109,  109,  109,  109,   46,   46,   46,
       46,   46,   46,   46,   46,   46,  111,  111,  111,  111,
      111,  111,  111,  111,  111,  116,  279,  116,  116,  101,
       50,  101,  101,  101,  101,  101,  101,  101,  162,   50,
      162,  162,  162,  162,  162,  162,  162,  168,   50,  168,

      210,  210,  210,  210,  210,  210,  210,  239,   50,   50,
       50,   50,   50,   42,   42,  206,  193,   50,  175,   50,
       50,  110,  159,  100,  157,  145,   60,   50,   60,   50,
       47,  110,  106,   42,   40,   42,   42,  100,   60,   42,
       42,   40,  386,   39,   39,    5,  386,  386,  386,  386,
      386,  386,  386,  386,  386,  386,  386,  386,  386,  386,
      386,  386,  386,  386,  386,  386,  386,  386,  386,  386,
      386,  386,  386,  386,  386,  386,  386,  386,  386,  386,
      386,  386,  386,  386,  386,  386,  386,  386,  386,  386,
      386,  386,  386,  386,  386,  386,  386

    } ;

static yyconst short int yy_chk[1198] =
    {   0,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,   10,   10,   54,   54,   10,   11,   11,   11,  385,
       11,   15,   15,   11,   15,   19,   19,   20,   20,   32,
       11,   11,   25,   32,   19,   27,   20,   28,   27,   20,
       25,   28,   32,   19,   92,   20,   25,   28,   92,   25,
       28,   19,   34,   20,   22,   22,   26,   26,   11,   13,

       63,   13,   13,   22,   13,   34,   63,   13,   13,   13,
       26,   13,   22,   23,   23,   22,   29,  375,   60,   29,
       22,   30,   23,   30,   65,   31,   60,   31,   23,   90,
       31,   23,   35,   31,   44,   44,   30,   31,   44,   23,
       78,   65,   35,   31,   90,   13,   13,   14,   78,   14,
       14,   70,   14,   33,   35,   14,   70,   33,   33,   14,
       52,   52,   66,   52,   53,   53,   56,   56,   64,   70,
       64,   33,   71,   57,   57,   56,   66,   74,   72,   74,
      373,   86,   57,   72,   56,   53,   87,   66,   87,   71,
       86,   57,   56,   14,   14,   16,   72,   16,   16,   57,

       16,   16,   16,   16,   16,   16,   16,   16,   16,   16,
       16,   16,   16,   16,   16,   16,   16,   16,   16,   16,
       16,   16,   16,   16,   16,   16,   16,   16,   16,   16,
       16,   16,   16,   16,   91,   16,   16,   16,   16,   16,
       16,   16,   16,   18,   75,   18,   18,   75,   18,  371,
       91,   18,   18,   18,   18,   18,   18,   18,   18,   18,
       18,   18,   61,   61,   77,   69,   69,   18,   83,   62,
       62,   61,   76,   96,   80,   76,   18,   77,   62,   69,
       61,   83,   79,   79,   18,   80,   96,   62,   61,   18,
       18,   21,   21,   21,   21,   62,   79,   67,   67,   68,

       68,   21,   68,   21,   21,   81,   67,   21,   68,   88,
       21,   88,  114,  114,  358,   67,   81,   68,   21,   24,
       84,   24,   24,   67,   24,   68,   89,   24,   73,   73,
       82,   24,  356,   82,   84,   98,   89,   73,   93,   93,
       73,   95,   95,   82,   98,   84,   73,   82,   82,   24,
      355,   94,   93,  108,   73,   95,   94,  123,   82,  107,
      107,   82,  110,  107,  108,   24,   24,   39,   39,   94,
      123,   39,  121,  110,   39,  121,  122,  125,   39,   39,
       39,   39,   39,  112,  112,  113,  112,  113,  113,  116,
      117,  122,  128,  129,  125,  129,  134,  116,  117,  127,

      136,  130,  136,  134,  119,  119,  342,  128,  113,   39,
       48,   48,   48,  119,   48,  130,  127,   48,  124,  119,
      124,  124,  119,  131,   48,   48,  130,  132,  132,  124,
      119,  137,  133,  135,  334,  140,  131,  133,  124,  144,
      135,  132,  150,  142,  137,  142,  124,  139,  140,  150,
      133,  144,   48,   49,   49,   49,   49,   49,   49,   49,
       49,   49,  139,  141,   49,  139,  146,   49,   49,  145,
      147,  145,  147,  149,  148,  152,  141,  148,  149,  146,
      151,  153,  169,  153,  151,  154,  155,  158,  331,  158,
      152,  149,  157,  161,  161,   49,  165,  165,  154,  155,

      183,  169,   49,   49,   51,   51,  183,  166,  157,  166,
      166,  167,  171,  167,  167,  174,  170,  165,  175,  171,
      176,  170,  174,  180,  188,   51,  188,  180,  182,  176,
      166,  170,  178,  179,  175,  327,   51,   51,   51,   51,
       51,  102,  102,  181,  178,  102,  179,  182,  102,  173,
      173,  184,  102,  181,  178,  102,  102,  186,  173,  187,
      190,  192,  193,  186,  189,  181,  200,  173,  184,  194,
      189,  197,  189,  192,  187,  173,  199,  190,  194,  200,
      196,  193,  196,  102,  103,  103,  202,  201,  103,  203,
      197,  103,  206,  199,  203,  103,  103,  103,  103,  103,

      201,  208,  204,  202,  202,  204,  205,  203,  205,  207,
      354,  206,  207,  212,  208,  209,  209,  202,  215,  216,
      211,  354,  211,  211,  215,  216,  103,  104,  104,  214,
      104,  104,  104,  104,  104,  104,  212,  220,  104,  214,
      217,  104,  104,  211,  218,  219,  220,  223,  221,  219,
      218,  214,  221,  217,  217,  226,  224,  228,  229,  228,
      227,  223,  236,  245,  226,  227,  245,  217,  236,  104,
      325,  229,  223,  224,  231,  227,  104,  104,  111,  111,
      111,  111,  111,  111,  111,  111,  111,  230,  232,  111,
      243,  231,  111,  111,  239,  233,  239,  230,  240,  241,

      242,  241,  242,  246,  243,  232,  246,  249,  249,  230,
      233,  250,  259,  240,  253,  243,  293,  250,  251,  251,
      111,  249,  252,  253,  252,  252,  293,  111,  111,  162,
      162,  259,  162,  162,  162,  162,  162,  162,  254,  251,
      162,  256,  271,  162,  162,  252,  255,  254,  255,  261,
      260,  262,  263,  324,  262,  256,  260,  271,  265,  265,
      267,  264,  261,  268,  268,  263,  256,  270,  274,  267,
      303,  162,  265,  303,  270,  264,  273,  268,  162,  162,
      163,  163,  163,  163,  163,  163,  264,  274,  163,  273,
      276,  163,  163,  277,  282,  283,  278,  279,  277,  280,

      281,  286,  281,  286,  283,  292,  292,  282,  305,  276,
      278,  277,  279,  280,  284,  284,  320,  367,  285,  163,
      296,  278,  296,  367,  280,  305,  163,  163,  210,  210,
      210,  210,  210,  210,  291,  284,  210,  287,  287,  210,
      210,  285,  300,  294,  295,  298,  298,  291,  299,  299,
      308,  287,  300,  301,  307,  379,  319,  294,  295,  298,
      309,  379,  299,  308,  300,  312,  312,  210,  294,  295,
      313,  307,  301,  316,  210,  210,  311,  311,  314,  309,
      314,  315,  317,  313,  321,  318,  312,  318,  329,  322,
      311,  323,  316,  328,  315,  328,  330,  333,  335,  333,

      336,  317,  322,  321,  337,  323,  340,  329,  345,  341,
      330,  344,  337,  346,  349,  340,  323,  335,  348,  336,
      357,  330,  341,  360,  345,  344,  352,  361,  346,  353,
      357,  362,  348,  349,  353,  364,  344,  368,  360,  352,
      361,  366,  357,  348,  362,  363,  363,  353,  365,  376,
      365,  366,  380,  372,  364,  372,  368,  377,  378,  378,
      381,  377,  381,  310,  382,  363,  376,  383,  306,  380,
      383,  384,  378,  382,  297,  384,  387,  289,  387,  387,
      387,  288,  387,  388,  275,  388,  388,  388,  388,  388,
      388,  388,  389,  389,  389,  389,  389,  389,  389,  389,

      389,  390,  272,  390,  390,  390,  269,  390,  391,  391,
      392,  392,  392,  392,  392,  392,  392,  392,  392,  393,
      266,  393,  393,  393,  393,  393,  393,  393,  394,  394,
      258,  394,  395,  257,  395,  395,  395,  395,  395,  395,
      395,  396,  247,  396,  396,  396,  396,  396,  396,  396,
      397,  397,  397,  397,  397,  397,  397,  398,  398,  398,
      398,  398,  398,  398,  398,  398,  399,  399,  399,  399,
      399,  399,  399,  399,  399,  400,  244,  400,  400,  401,
      237,  401,  401,  401,  401,  401,  401,  401,  402,  234,
      402,  402,  402,  402,  402,  402,  402,  403,  222,  403,

      404,  404,  404,  404,  404,  404,  404,  198,  195,  191,
      185,  177,  172,  164,  160,  156,  143,  138,  126,  120,
      118,  109,  101,   99,   97,   85,   59,   58,   55,   50,
       46,   45,   43,   41,   40,   38,   37,   36,   17,   12,
        9,    7,    5,    4,    3,  386,  386,  386,  386,  386,
      386,  386,  386,  386,  386,  386,  386,  386,  386,  386,
      386,  386,  386,  386,  386,  386,  386,  386,  386,  386,
      386,  386,  386,  386,  386,  386,  386,  386,  386,  386,
      386,  386,  386,  386,  386,  386,  386,  386,  386,  386,
      386,  386,  386,  386,  386,  386,  386

    } ;

static yy_state_type yy_state_buf[YY_BUF_SIZE + 2], *yy_state_ptr;
static char *yy_full_match;
static int yy_lp;
#define REJECT \
{ \
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */ \
yy_cp = yy_full_match; /* restore poss. backed-over text */ \
++yy_lp; \
goto find_rule; \
}
#define yymore() yymore_used_but_not_detected
#define YY_MORE_ADJ 0
#define YY_RESTORE_YY_MORE_OFFSET
char *yytext;
#line 1 "conf_lex.l"
#define INITIAL 0
#define YY_MAIN 0
#define S_REGEX 1

#line 80 "conf_lex.l"
	#include "config.h"

	#ifdef HAVE_SYS_CDEFS_H
	#ifndef HAVE_BROKEN_RCSID
	#include <sys/cdefs.h>
	#ifdef __RCSID
	__RCSID("$Id: conf_lex.l,v 1.55.2.2 2006/09/20 07:38:24 manu Exp $");
	#endif
	#endif
	#endif

	#include <string.h>
	#include <errno.h>
	#include <sysexits.h>

	#define YY_NO_UNPUT

	int conf_line;
	int conf_acl_end;
#line 865 "conf_lex.c"

/* Macros after this point can all be overridden by user definitions in
 * section 1.
 */

#ifndef YY_SKIP_YYWRAP
#ifdef __cplusplus
extern "C" int yywrap YY_PROTO(( void ));
#else
extern int yywrap YY_PROTO(( void ));
#endif
#endif

#ifndef YY_NO_UNPUT
static void yyunput YY_PROTO(( int c, char *buf_ptr ));
#endif

#ifndef yytext_ptr
static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int ));
#endif

#ifdef YY_NEED_STRLEN
static int yy_flex_strlen YY_PROTO(( yyconst char * ));
#endif

#ifndef YY_NO_INPUT
#ifdef __cplusplus
static int yyinput YY_PROTO(( void ));
#else
static int input YY_PROTO(( void ));
#endif
#endif

#if YY_STACK_USED
static int yy_start_stack_ptr = 0;
static int yy_start_stack_depth = 0;
static int *yy_start_stack = 0;
#ifndef YY_NO_PUSH_STATE
static void yy_push_state YY_PROTO(( int new_state ));
#endif
#ifndef YY_NO_POP_STATE
static void yy_pop_state YY_PROTO(( void ));
#endif
#ifndef YY_NO_TOP_STATE
static int yy_top_state YY_PROTO(( void ));
#endif

#else
#define YY_NO_PUSH_STATE 1
#define YY_NO_POP_STATE 1
#define YY_NO_TOP_STATE 1
#endif

#ifdef YY_MALLOC_DECL
YY_MALLOC_DECL
#else
#if __STDC__
#ifndef __cplusplus
#include <stdlib.h>
#endif
#else
/* Just try to get by without declaring the routines.  This will fail
 * miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int)
 * or sizeof(void*) != sizeof(int).
 */
#endif
#endif

/* Amount of stuff to slurp up with each read. */
#ifndef YY_READ_BUF_SIZE
#define YY_READ_BUF_SIZE 8192
#endif

/* Copy whatever the last rule matched to the standard output. */

#ifndef ECHO
/* This used to be an fputs(), but since the string might contain NUL's,
 * we now use fwrite().
 */
#define ECHO (void) fwrite( yytext, yyleng, 1, yyout )
#endif

/* Gets input and stuffs it into "buf".  number of characters read, or YY_NULL,
 * is returned in "result".
 */
#ifndef YY_INPUT
#define YY_INPUT(buf,result,max_size) \
	if ( yy_current_buffer->yy_is_interactive ) \
		{ \
		int c = '*', n; \
		for ( n = 0; n < max_size && \
			     (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
			buf[n] = (char) c; \
		if ( c == '\n' ) \
			buf[n++] = (char) c; \
		if ( c == EOF && ferror( yyin ) ) \
			YY_FATAL_ERROR( "input in flex scanner failed" ); \
		result = n; \
		} \
	else if ( ((result = fread( buf, 1, max_size, yyin )) == 0) \
		  && ferror( yyin ) ) \
		YY_FATAL_ERROR( "input in flex scanner failed" );
#endif

/* No semi-colon after return; correct usage is to write "yyterminate();" -
 * we don't want an extra ';' after the "return" because that will cause
 * some compilers to complain about unreachable statements.
 */
#ifndef yyterminate
#define yyterminate() return YY_NULL
#endif

/* Number of entries by which start-condition stack grows. */
#ifndef YY_START_STACK_INCR
#define YY_START_STACK_INCR 25
#endif

/* Report a fatal error. */
#ifndef YY_FATAL_ERROR
#define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
#endif

/* Default declaration of generated scanner - a define so the user can
 * easily add parameters.
 */
#ifndef YY_DECL
#define YY_DECL int yylex YY_PROTO(( void ))
#endif

/* Code executed at the beginning of each rule, after yytext and yyleng
 * have been set up.
 */
#ifndef YY_USER_ACTION
#define YY_USER_ACTION
#endif

/* Code executed at the end of each rule. */
#ifndef YY_BREAK
#define YY_BREAK break;
#endif

#define YY_RULE_SETUP \
	YY_USER_ACTION

YY_DECL
	{
	register yy_state_type yy_current_state;
	register char *yy_cp, *yy_bp;
	register int yy_act;

#line 101 "conf_lex.l"

#line 1018 "conf_lex.c"

	if ( yy_init )
		{
		yy_init = 0;

#ifdef YY_USER_INIT
		YY_USER_INIT;
#endif

		if ( ! yy_start )
			yy_start = 1;	/* first start state */

		if ( ! yyin )
			yyin = stdin;

		if ( ! yyout )
			yyout = stdout;

		if ( ! yy_current_buffer )
			yy_current_buffer =
				yy_create_buffer( yyin, YY_BUF_SIZE );

		yy_load_buffer_state();
		}

	while ( 1 )		/* loops until end-of-file is reached */
		{
		yy_cp = yy_c_buf_p;

		/* Support of yytext. */
		*yy_cp = yy_hold_char;

		/* yy_bp points to the position in yy_ch_buf of the start of
		 * the current run.
		 */
		yy_bp = yy_cp;

		yy_current_state = yy_start;
		yy_state_ptr = yy_state_buf;
		*yy_state_ptr++ = yy_current_state;
yy_match:
		do
			{
			register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
			while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
				{
				yy_current_state = (int) yy_def[yy_current_state];
				if ( yy_current_state >= 387 )
					yy_c = yy_meta[(unsigned int) yy_c];
				}
			yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
			*yy_state_ptr++ = yy_current_state;
			++yy_cp;
			}
		while ( yy_base[yy_current_state] != 1146 );

yy_find_action:
		yy_current_state = *--yy_state_ptr;
		yy_lp = yy_accept[yy_current_state];
find_rule: /* we branch to this label when backing up */
		for ( ; ; ) /* until we find what rule we matched */
			{
			if ( yy_lp && yy_lp < yy_accept[yy_current_state + 1] )
				{
				yy_act = yy_acclist[yy_lp];
					{
					yy_full_match = yy_cp;
					break;
					}
				}
			--yy_cp;
			yy_current_state = *--yy_state_ptr;
			yy_lp = yy_accept[yy_current_state];
			}

		YY_DO_BEFORE_ACTION;


do_action:	/* This label is used only to access EOF actions. */


		switch ( yy_act )
	{ /* beginning of action switch */
case 1:
YY_RULE_SETUP
#line 102 "conf_lex.l"

	YY_BREAK
case 2:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_RULE_SETUP
#line 103 "conf_lex.l"

	YY_BREAK
case 3:
YY_RULE_SETUP
#line 104 "conf_lex.l"
{ return ADDR; }
	YY_BREAK
case 4:
YY_RULE_SETUP
#line 105 "conf_lex.l"
{ BEGIN(S_REGEX); return FROM; }
	YY_BREAK
case 5:
YY_RULE_SETUP
#line 106 "conf_lex.l"
{ BEGIN(S_REGEX); return RCPT; }
	YY_BREAK
case 6:
YY_RULE_SETUP
#line 107 "conf_lex.l"
{ return PEER; }
	YY_BREAK
case 7:
YY_RULE_SETUP
#line 108 "conf_lex.l"
{ return AUTOWHITE; }
	YY_BREAK
case 8:
YY_RULE_SETUP
#line 109 "conf_lex.l"
{ return LAZYAW; }
	YY_BREAK
case 9:
YY_RULE_SETUP
#line 110 "conf_lex.l"
{ return GREYLIST; }
	YY_BREAK
case 10:
YY_RULE_SETUP
#line 111 "conf_lex.l"
{ return NOAUTH; }
	YY_BREAK
case 11:
YY_RULE_SETUP
#line 112 "conf_lex.l"
{ return NOACCESSDB; }
	YY_BREAK
case 12:
YY_RULE_SETUP
#line 113 "conf_lex.l"
{ return EXTENDEDREGEX; }
	YY_BREAK
case 13:
YY_RULE_SETUP
#line 114 "conf_lex.l"
{ return DELAYEDREJECT; }
	YY_BREAK
case 14:
YY_RULE_SETUP
#line 115 "conf_lex.l"
{ return NOSPF; }
	YY_BREAK
case 15:
YY_RULE_SETUP
#line 116 "conf_lex.l"
{ return QUIET; }
	YY_BREAK
case 16:
YY_RULE_SETUP
#line 117 "conf_lex.l"
{ return TESTMODE; }
	YY_BREAK
case 17:
YY_RULE_SETUP
#line 118 "conf_lex.l"
{ return VERBOSE; }
	YY_BREAK
case 18:
YY_RULE_SETUP
#line 119 "conf_lex.l"
{ return DUMP_NO_TIME_TRANSLATION; }
	YY_BREAK
case 19:
YY_RULE_SETUP
#line 120 "conf_lex.l"
{ return LOGEXPIRED; }
	YY_BREAK
case 20:
YY_RULE_SETUP
#line 121 "conf_lex.l"
{ return DNSRBL; }
	YY_BREAK
case 21:
YY_RULE_SETUP
#line 122 "conf_lex.l"
{ BEGIN(S_REGEX); return SM_MACRO; }
	YY_BREAK
case 22:
YY_RULE_SETUP
#line 123 "conf_lex.l"
{ return UNSET; }
	YY_BREAK
case 23:
YY_RULE_SETUP
#line 124 "conf_lex.l"
{ return LIST; }
	YY_BREAK
case 24:
YY_RULE_SETUP
#line 125 "conf_lex.l"
{ return FLUSHADDR; }
	YY_BREAK
case 25:
YY_RULE_SETUP
#line 126 "conf_lex.l"
{ return CODE; }
	YY_BREAK
case 26:
YY_RULE_SETUP
#line 127 "conf_lex.l"
{ return ECODE; }
	YY_BREAK
case 27:
YY_RULE_SETUP
#line 128 "conf_lex.l"
{ return MSG; }
	YY_BREAK
case 28:
YY_RULE_SETUP
#line 129 "conf_lex.l"
{ return PIDFILE; }
	YY_BREAK
case 29:
YY_RULE_SETUP
#line 130 "conf_lex.l"
{ return GLDUMPFILE; }
	YY_BREAK
case 30:
YY_RULE_SETUP
#line 131 "conf_lex.l"
{ return SUBNETMATCH; }
	YY_BREAK
case 31:
YY_RULE_SETUP
#line 132 "conf_lex.l"
{ return SUBNETMATCH6; }
	YY_BREAK
case 32:
YY_RULE_SETUP
#line 133 "conf_lex.l"
{ return SOCKET; }
	YY_BREAK
case 33:
YY_RULE_SETUP
#line 134 "conf_lex.l"
{ return USER; }
	YY_BREAK
case 34:
YY_RULE_SETUP
#line 135 "conf_lex.l"
{ return NODETACH; }
	YY_BREAK
case 35:
YY_RULE_SETUP
#line 136 "conf_lex.l"
{ return REPORT; }
	YY_BREAK
case 36:
YY_RULE_SETUP
#line 137 "conf_lex.l"
{ return NONE; }
	YY_BREAK
case 37:
YY_RULE_SETUP
#line 138 "conf_lex.l"
{ return DELAYS; }
	YY_BREAK
case 38:
YY_RULE_SETUP
#line 139 "conf_lex.l"
{ return NODELAYS; }
	YY_BREAK
case 39:
YY_RULE_SETUP
#line 140 "conf_lex.l"
{ return GLXDELAY; }
	YY_BREAK
case 40:
YY_RULE_SETUP
#line 141 "conf_lex.l"
{ return ALL; }
	YY_BREAK
case 41:
YY_RULE_SETUP
#line 142 "conf_lex.l"
{ return GLDUMPFREQ; }
	YY_BREAK
case 42:
YY_RULE_SETUP
#line 143 "conf_lex.l"
{ return GLTIMEOUT; }
	YY_BREAK
case 43:
YY_RULE_SETUP
#line 144 "conf_lex.l"
{ BEGIN(S_REGEX); return DOMAIN; }
	YY_BREAK
case 44:
YY_RULE_SETUP
#line 145 "conf_lex.l"
{ return SYNCADDR; }
	YY_BREAK
case 45:
YY_RULE_SETUP
#line 146 "conf_lex.l"
{ return SYNCSRCADDR; }
	YY_BREAK
case 46:
YY_RULE_SETUP
#line 147 "conf_lex.l"
{ return PORT; }
	YY_BREAK
case 47:
YY_RULE_SETUP
#line 148 "conf_lex.l"
{ return ACL; }
	YY_BREAK
case 48:
YY_RULE_SETUP
#line 149 "conf_lex.l"
{ return WHITELIST; }
	YY_BREAK
case 49:
YY_RULE_SETUP
#line 150 "conf_lex.l"
{ return BLACKLIST; }
	YY_BREAK
case 50:
YY_RULE_SETUP
#line 151 "conf_lex.l"
{ return DEFAULT; }
	YY_BREAK
case 51:
YY_RULE_SETUP
#line 152 "conf_lex.l"
{ return STAR; }
	YY_BREAK
case 52:
YY_RULE_SETUP
#line 153 "conf_lex.l"
{ return DRAC; }
	YY_BREAK
case 53:
YY_RULE_SETUP
#line 154 "conf_lex.l"
{ return NODRAC; }
	YY_BREAK
case 54:
YY_RULE_SETUP
#line 155 "conf_lex.l"
{ return DB; }
	YY_BREAK
case 55:
YY_RULE_SETUP
#line 156 "conf_lex.l"
{
			strncpy(yylval.qstring, yytext, QSTRLEN);
			yylval.qstring[QSTRLEN] = '\0';
			return QSTRING;
		}
	YY_BREAK
case 56:
YY_RULE_SETUP
#line 161 "conf_lex.l"
{
			strncpy(yylval.delay, yytext, NUMLEN);
			yylval.delay[NUMLEN] = '\0';
			return TNUMBER;
		}
	YY_BREAK
case 57:
YY_RULE_SETUP
#line 166 "conf_lex.l"
{
			strncpy(yylval.delay, yytext, NUMLEN);
			yylval.delay[NUMLEN] = '\0';
			return TDELAY;
		}
	YY_BREAK
case 58:
YY_RULE_SETUP
#line 171 "conf_lex.l"
{
			strncpy(yylval.email, yytext, ADDRLEN);
			yylval.email[ADDRLEN] = '\0';
			return EMAIL;
		}
	YY_BREAK
case 59:
YY_RULE_SETUP
#line 176 "conf_lex.l"
{ 
			socklen_t salen = sizeof(yylval.ipaddr);

			if (ipfromstring(yytext, SA(&yylval.ipaddr), &salen,
			     AF_INET) != 1)
				REJECT;
			return IPADDR; 
		}
	YY_BREAK
case 60:
YY_RULE_SETUP
#line 184 "conf_lex.l"
{
#ifdef AF_INET6
			socklen_t salen = sizeof(yylval.ip6addr);

			if (ipfromstring(yytext, SA(&yylval.ip6addr), &salen,
			    AF_INET6) != 1) 
				REJECT;
#endif
			return IP6ADDR;
		}
	YY_BREAK
case 61:
YY_RULE_SETUP
#line 194 "conf_lex.l"
{ 
			strncpy(yylval.domainname, yytext, ADDRLEN);
			yylval.domainname[ADDRLEN] = '\0';
			return DOMAINNAME; 
		}
	YY_BREAK
case 62:
YY_RULE_SETUP
#line 199 "conf_lex.l"
{
			strncpy(yylval.regex, yytext, REGEXLEN);
			yylval.regex[REGEXLEN] = '\0';
			return REGEX;
		}
	YY_BREAK
case 63:
YY_RULE_SETUP
#line 204 "conf_lex.l"
{ 
			yylval.cidr = atoi(yytext + 1);
			return CIDR; 
		}
	YY_BREAK
case 64:
YY_RULE_SETUP
#line 208 "conf_lex.l"
{	return OPENLIST; }
	YY_BREAK
case 65:
YY_RULE_SETUP
#line 209 "conf_lex.l"
{	return CLOSELIST; }
	YY_BREAK
case 66:
YY_RULE_SETUP
#line 210 "conf_lex.l"
{ 
			BEGIN(0);
			conf_line++; 
			return yytext[0]; 
		}
	YY_BREAK
case 67:
YY_RULE_SETUP
#line 215 "conf_lex.l"
{	conf_line++; }
	YY_BREAK
case 68:
YY_RULE_SETUP
#line 216 "conf_lex.l"
{ 
			mg_log(LOG_ERR, "unknown token \"%s\" line %d", 
			    yytext, conf_line); 
			exit(EX_DATAERR);
		}
	YY_BREAK
case 69:
YY_RULE_SETUP
#line 221 "conf_lex.l"
YY_FATAL_ERROR( "flex scanner jammed" );
	YY_BREAK
#line 1501 "conf_lex.c"
			case YY_STATE_EOF(INITIAL):
			case YY_STATE_EOF(S_REGEX):
				yyterminate();

	case YY_END_OF_BUFFER:
		{
		/* Amount of text matched not including the EOB char. */
		int yy_amount_of_matched_text = (int) (yy_cp - yytext_ptr) - 1;

		/* Undo the effects of YY_DO_BEFORE_ACTION. */
		*yy_cp = yy_hold_char;
		YY_RESTORE_YY_MORE_OFFSET

		if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_NEW )
			{
			/* We're scanning a new file or input source.  It's
			 * possible that this happened because the user
			 * just pointed yyin at a new source and called
			 * yylex().  If so, then we have to assure
			 * consistency between yy_current_buffer and our
			 * globals.  Here is the right place to do so, because
			 * this is the first action (other than possibly a
			 * back-up) that will match for the new input source.
			 */
			yy_n_chars = yy_current_buffer->yy_n_chars;
			yy_current_buffer->yy_input_file = yyin;
			yy_current_buffer->yy_buffer_status = YY_BUFFER_NORMAL;
			}

		/* Note that here we test for yy_c_buf_p "<=" to the position
		 * of the first EOB in the buffer, since yy_c_buf_p will
		 * already have been incremented past the NUL character
		 * (since all states make transitions on EOB to the
		 * end-of-buffer state).  Contrast this with the test
		 * in input().
		 */
		if ( yy_c_buf_p <= &yy_current_buffer->yy_ch_buf[yy_n_chars] )
			{ /* This was really a NUL. */
			yy_state_type yy_next_state;

			yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text;

			yy_current_state = yy_get_previous_state();

			/* Okay, we're now positioned to make the NUL
			 * transition.  We couldn't have
			 * yy_get_previous_state() go ahead and do it
			 * for us because it doesn't know how to deal
			 * with the possibility of jamming (and we don't
			 * want to build jamming into it because then it
			 * will run more slowly).
			 */

			yy_next_state = yy_try_NUL_trans( yy_current_state );

			yy_bp = yytext_ptr + YY_MORE_ADJ;

			if ( yy_next_state )
				{
				/* Consume the NUL. */
				yy_cp = ++yy_c_buf_p;
				yy_current_state = yy_next_state;
				goto yy_match;
				}

			else
				{
				yy_cp = yy_c_buf_p;
				goto yy_find_action;
				}
			}

		else switch ( yy_get_next_buffer() )
			{
			case EOB_ACT_END_OF_FILE:
				{
				yy_did_buffer_switch_on_eof = 0;

				if ( yywrap() )
					{
					/* Note: because we've taken care in
					 * yy_get_next_buffer() to have set up
					 * yytext, we can now set up
					 * yy_c_buf_p so that if some total
					 * hoser (like flex itself) wants to
					 * call the scanner after we return the
					 * YY_NULL, it'll still work - another
					 * YY_NULL will get returned.
					 */
					yy_c_buf_p = yytext_ptr + YY_MORE_ADJ;

					yy_act = YY_STATE_EOF(YY_START);
					goto do_action;
					}

				else
					{
					if ( ! yy_did_buffer_switch_on_eof )
						YY_NEW_FILE;
					}
				break;
				}

			case EOB_ACT_CONTINUE_SCAN:
				yy_c_buf_p =
					yytext_ptr + yy_amount_of_matched_text;

				yy_current_state = yy_get_previous_state();

				yy_cp = yy_c_buf_p;
				yy_bp = yytext_ptr + YY_MORE_ADJ;
				goto yy_match;

			case EOB_ACT_LAST_MATCH:
				yy_c_buf_p =
				&yy_current_buffer->yy_ch_buf[yy_n_chars];

				yy_current_state = yy_get_previous_state();

				yy_cp = yy_c_buf_p;
				yy_bp = yytext_ptr + YY_MORE_ADJ;
				goto yy_find_action;
			}
		break;
		}

	default:
		YY_FATAL_ERROR(
			"fatal flex scanner internal error--no action found" );
	} /* end of action switch */
		} /* end of scanning one token */
	} /* end of yylex */


/* yy_get_next_buffer - try to read in a new buffer
 *
 * Returns a code representing an action:
 *	EOB_ACT_LAST_MATCH -
 *	EOB_ACT_CONTINUE_SCAN - continue scanning from current position
 *	EOB_ACT_END_OF_FILE - end of file
 */

static int yy_get_next_buffer()
	{
	register char *dest = yy_current_buffer->yy_ch_buf;
	register char *source = yytext_ptr;
	register int number_to_move, i;
	int ret_val;

	if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] )
		YY_FATAL_ERROR(
		"fatal flex scanner internal error--end of buffer missed" );

	if ( yy_current_buffer->yy_fill_buffer == 0 )
		{ /* Don't try to fill the buffer, so this is an EOF. */
		if ( yy_c_buf_p - yytext_ptr - YY_MORE_ADJ == 1 )
			{
			/* We matched a single character, the EOB, so
			 * treat this as a final EOF.
			 */
			return EOB_ACT_END_OF_FILE;
			}

		else
			{
			/* We matched some text prior to the EOB, first
			 * process it.
			 */
			return EOB_ACT_LAST_MATCH;
			}
		}

	/* Try to read more data. */

	/* First move last chars to start of buffer. */
	number_to_move = (int) (yy_c_buf_p - yytext_ptr) - 1;

	for ( i = 0; i < number_to_move; ++i )
		*(dest++) = *(source++);

	if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_EOF_PENDING )
		/* don't do the read, it's not guaranteed to return an EOF,
		 * just force an EOF
		 */
		yy_current_buffer->yy_n_chars = yy_n_chars = 0;

	else
		{
		int num_to_read =
			yy_current_buffer->yy_buf_size - number_to_move - 1;

		while ( num_to_read <= 0 )
			{ /* Not enough room in the buffer - grow it. */
#ifdef YY_USES_REJECT
			YY_FATAL_ERROR(
"input buffer overflow, can't enlarge buffer because scanner uses REJECT" );
#else

			/* just a shorter name for the current buffer */
			YY_BUFFER_STATE b = yy_current_buffer;

			int yy_c_buf_p_offset =
				(int) (yy_c_buf_p - b->yy_ch_buf);

			if ( b->yy_is_our_buffer )
				{
				int new_size = b->yy_buf_size * 2;

				if ( new_size <= 0 )
					b->yy_buf_size += b->yy_buf_size / 8;
				else
					b->yy_buf_size *= 2;

				b->yy_ch_buf = (char *)
					/* Include room in for 2 EOB chars. */
					yy_flex_realloc( (void *) b->yy_ch_buf,
							 b->yy_buf_size + 2 );
				}
			else
				/* Can't grow it, we don't own it. */
				b->yy_ch_buf = 0;

			if ( ! b->yy_ch_buf )
				YY_FATAL_ERROR(
				"fatal error - scanner input buffer overflow" );

			yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset];

			num_to_read = yy_current_buffer->yy_buf_size -
						number_to_move - 1;
#endif
			}

		if ( num_to_read > YY_READ_BUF_SIZE )
			num_to_read = YY_READ_BUF_SIZE;

		/* Read in more data. */
		YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]),
			yy_n_chars, num_to_read );

		yy_current_buffer->yy_n_chars = yy_n_chars;
		}

	if ( yy_n_chars == 0 )
		{
		if ( number_to_move == YY_MORE_ADJ )
			{
			ret_val = EOB_ACT_END_OF_FILE;
			yyrestart( yyin );
			}

		else
			{
			ret_val = EOB_ACT_LAST_MATCH;
			yy_current_buffer->yy_buffer_status =
				YY_BUFFER_EOF_PENDING;
			}
		}

	else
		ret_val = EOB_ACT_CONTINUE_SCAN;

	yy_n_chars += number_to_move;
	yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR;
	yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR;

	yytext_ptr = &yy_current_buffer->yy_ch_buf[0];

	return ret_val;
	}


/* yy_get_previous_state - get the state just before the EOB char was reached */

static yy_state_type yy_get_previous_state()
	{
	register yy_state_type yy_current_state;
	register char *yy_cp;

	yy_current_state = yy_start;
	yy_state_ptr = yy_state_buf;
	*yy_state_ptr++ = yy_current_state;

	for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp )
		{
		register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
		while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
			{
			yy_current_state = (int) yy_def[yy_current_state];
			if ( yy_current_state >= 387 )
				yy_c = yy_meta[(unsigned int) yy_c];
			}
		yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
		*yy_state_ptr++ = yy_current_state;
		}

	return yy_current_state;
	}


/* yy_try_NUL_trans - try to make a transition on the NUL character
 *
 * synopsis
 *	next_state = yy_try_NUL_trans( current_state );
 */

#ifdef YY_USE_PROTOS
static yy_state_type yy_try_NUL_trans( yy_state_type yy_current_state )
#else
static yy_state_type yy_try_NUL_trans( yy_current_state )
yy_state_type yy_current_state;
#endif
	{
	register int yy_is_jam;

	register YY_CHAR yy_c = 1;
	while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
		{
		yy_current_state = (int) yy_def[yy_current_state];
		if ( yy_current_state >= 387 )
			yy_c = yy_meta[(unsigned int) yy_c];
		}
	yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
	yy_is_jam = (yy_current_state == 386);
	if ( ! yy_is_jam )
		*yy_state_ptr++ = yy_current_state;

	return yy_is_jam ? 0 : yy_current_state;
	}


#ifndef YY_NO_UNPUT
#ifdef YY_USE_PROTOS
static void yyunput( int c, register char *yy_bp )
#else
static void yyunput( c, yy_bp )
int c;
register char *yy_bp;
#endif
	{
	register char *yy_cp = yy_c_buf_p;

	/* undo effects of setting up yytext */
	*yy_cp = yy_hold_char;

	if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
		{ /* need to shift things up to make room */
		/* +2 for EOB chars. */
		register int number_to_move = yy_n_chars + 2;
		register char *dest = &yy_current_buffer->yy_ch_buf[
					yy_current_buffer->yy_buf_size + 2];
		register char *source =
				&yy_current_buffer->yy_ch_buf[number_to_move];

		while ( source > yy_current_buffer->yy_ch_buf )
			*--dest = *--source;

		yy_cp += (int) (dest - source);
		yy_bp += (int) (dest - source);
		yy_current_buffer->yy_n_chars =
			yy_n_chars = yy_current_buffer->yy_buf_size;

		if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
			YY_FATAL_ERROR( "flex scanner push-back overflow" );
		}

	*--yy_cp = (char) c;


	yytext_ptr = yy_bp;
	yy_hold_char = *yy_cp;
	yy_c_buf_p = yy_cp;
	}
#endif	/* ifndef YY_NO_UNPUT */


#ifdef __cplusplus
static int yyinput()
#else
static int input()
#endif
	{
	int c;

	*yy_c_buf_p = yy_hold_char;

	if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR )
		{
		/* yy_c_buf_p now points to the character we want to return.
		 * If this occurs *before* the EOB characters, then it's a
		 * valid NUL; if not, then we've hit the end of the buffer.
		 */
		if ( yy_c_buf_p < &yy_current_buffer->yy_ch_buf[yy_n_chars] )
			/* This was really a NUL. */
			*yy_c_buf_p = '\0';

		else
			{ /* need more input */
			int offset = yy_c_buf_p - yytext_ptr;
			++yy_c_buf_p;

			switch ( yy_get_next_buffer() )
				{
				case EOB_ACT_LAST_MATCH:
					/* This happens because yy_g_n_b()
					 * sees that we've accumulated a
					 * token and flags that we need to
					 * try matching the token before
					 * proceeding.  But for input(),
					 * there's no matching to consider.
					 * So convert the EOB_ACT_LAST_MATCH
					 * to EOB_ACT_END_OF_FILE.
					 */

					/* Reset buffer status. */
					yyrestart( yyin );

					/* fall through */

				case EOB_ACT_END_OF_FILE:
					{
					if ( yywrap() )
						return EOF;

					if ( ! yy_did_buffer_switch_on_eof )
						YY_NEW_FILE;
#ifdef __cplusplus
					return yyinput();
#else
					return input();
#endif
					}

				case EOB_ACT_CONTINUE_SCAN:
					yy_c_buf_p = yytext_ptr + offset;
					break;
				}
			}
		}

	c = *(unsigned char *) yy_c_buf_p;	/* cast for 8-bit char's */
	*yy_c_buf_p = '\0';	/* preserve yytext */
	yy_hold_char = *++yy_c_buf_p;


	return c;
	}


#ifdef YY_USE_PROTOS
void yyrestart( FILE *input_file )
#else
void yyrestart( input_file )
FILE *input_file;
#endif
	{
	if ( ! yy_current_buffer )
		yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE );

	yy_init_buffer( yy_current_buffer, input_file );
	yy_load_buffer_state();
	}


#ifdef YY_USE_PROTOS
void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer )
#else
void yy_switch_to_buffer( new_buffer )
YY_BUFFER_STATE new_buffer;
#endif
	{
	if ( yy_current_buffer == new_buffer )
		return;

	if ( yy_current_buffer )
		{
		/* Flush out information for old buffer. */
		*yy_c_buf_p = yy_hold_char;
		yy_current_buffer->yy_buf_pos = yy_c_buf_p;
		yy_current_buffer->yy_n_chars = yy_n_chars;
		}

	yy_current_buffer = new_buffer;
	yy_load_buffer_state();

	/* We don't actually know whether we did this switch during
	 * EOF (yywrap()) processing, but the only time this flag
	 * is looked at is after yywrap() is called, so it's safe
	 * to go ahead and always set it.
	 */
	yy_did_buffer_switch_on_eof = 1;
	}


#ifdef YY_USE_PROTOS
void yy_load_buffer_state( void )
#else
void yy_load_buffer_state()
#endif
	{
	yy_n_chars = yy_current_buffer->yy_n_chars;
	yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos;
	yyin = yy_current_buffer->yy_input_file;
	yy_hold_char = *yy_c_buf_p;
	}


#ifdef YY_USE_PROTOS
YY_BUFFER_STATE yy_create_buffer( FILE *file, int size )
#else
YY_BUFFER_STATE yy_create_buffer( file, size )
FILE *file;
int size;
#endif
	{
	YY_BUFFER_STATE b;

	b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );
	if ( ! b )
		YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );

	b->yy_buf_size = size;

	/* yy_ch_buf has to be 2 characters longer than the size given because
	 * we need to put in 2 end-of-buffer characters.
	 */
	b->yy_ch_buf = (char *) yy_flex_alloc( b->yy_buf_size + 2 );
	if ( ! b->yy_ch_buf )
		YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );

	b->yy_is_our_buffer = 1;

	yy_init_buffer( b, file );

	return b;
	}


#ifdef YY_USE_PROTOS
void yy_delete_buffer( YY_BUFFER_STATE b )
#else
void yy_delete_buffer( b )
YY_BUFFER_STATE b;
#endif
	{
	if ( ! b )
		return;

	if ( b == yy_current_buffer )
		yy_current_buffer = (YY_BUFFER_STATE) 0;

	if ( b->yy_is_our_buffer )
		yy_flex_free( (void *) b->yy_ch_buf );

	yy_flex_free( (void *) b );
	}


#ifndef YY_ALWAYS_INTERACTIVE
#ifndef YY_NEVER_INTERACTIVE
extern int isatty YY_PROTO(( int ));
#endif
#endif

#ifdef YY_USE_PROTOS
void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )
#else
void yy_init_buffer( b, file )
YY_BUFFER_STATE b;
FILE *file;
#endif


	{
	yy_flush_buffer( b );

	b->yy_input_file = file;
	b->yy_fill_buffer = 1;

#if YY_ALWAYS_INTERACTIVE
	b->yy_is_interactive = 1;
#else
#if YY_NEVER_INTERACTIVE
	b->yy_is_interactive = 0;
#else
	b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
#endif
#endif
	}


#ifdef YY_USE_PROTOS
void yy_flush_buffer( YY_BUFFER_STATE b )
#else
void yy_flush_buffer( b )
YY_BUFFER_STATE b;
#endif

	{
	if ( ! b )
		return;

	b->yy_n_chars = 0;

	/* We always need two end-of-buffer characters.  The first causes
	 * a transition to the end-of-buffer state.  The second causes
	 * a jam in that state.
	 */
	b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
	b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;

	b->yy_buf_pos = &b->yy_ch_buf[0];

	b->yy_at_bol = 1;
	b->yy_buffer_status = YY_BUFFER_NEW;

	if ( b == yy_current_buffer )
		yy_load_buffer_state();
	}


#ifndef YY_NO_SCAN_BUFFER
#ifdef YY_USE_PROTOS
YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size )
#else
YY_BUFFER_STATE yy_scan_buffer( base, size )
char *base;
yy_size_t size;
#endif
	{
	YY_BUFFER_STATE b;

	if ( size < 2 ||
	     base[size-2] != YY_END_OF_BUFFER_CHAR ||
	     base[size-1] != YY_END_OF_BUFFER_CHAR )
		/* They forgot to leave room for the EOB's. */
		return 0;

	b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );
	if ( ! b )
		YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );

	b->yy_buf_size = size - 2;	/* "- 2" to take care of EOB's */
	b->yy_buf_pos = b->yy_ch_buf = base;
	b->yy_is_our_buffer = 0;
	b->yy_input_file = 0;
	b->yy_n_chars = b->yy_buf_size;
	b->yy_is_interactive = 0;
	b->yy_at_bol = 1;
	b->yy_fill_buffer = 0;
	b->yy_buffer_status = YY_BUFFER_NEW;

	yy_switch_to_buffer( b );

	return b;
	}
#endif


#ifndef YY_NO_SCAN_STRING
#ifdef YY_USE_PROTOS
YY_BUFFER_STATE yy_scan_string( yyconst char *yy_str )
#else
YY_BUFFER_STATE yy_scan_string( yy_str )
yyconst char *yy_str;
#endif
	{
	int len;
	for ( len = 0; yy_str[len]; ++len )
		;

	return yy_scan_bytes( yy_str, len );
	}
#endif


#ifndef YY_NO_SCAN_BYTES
#ifdef YY_USE_PROTOS
YY_BUFFER_STATE yy_scan_bytes( yyconst char *bytes, int len )
#else
YY_BUFFER_STATE yy_scan_bytes( bytes, len )
yyconst char *bytes;
int len;
#endif
	{
	YY_BUFFER_STATE b;
	char *buf;
	yy_size_t n;
	int i;

	/* Get memory for full buffer, including space for trailing EOB's. */
	n = len + 2;
	buf = (char *) yy_flex_alloc( n );
	if ( ! buf )
		YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );

	for ( i = 0; i < len; ++i )
		buf[i] = bytes[i];

	buf[len] = buf[len+1] = YY_END_OF_BUFFER_CHAR;

	b = yy_scan_buffer( buf, n );
	if ( ! b )
		YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );

	/* It's okay to grow etc. this buffer, and we should throw it
	 * away when we're done.
	 */
	b->yy_is_our_buffer = 1;

	return b;
	}
#endif


#ifndef YY_NO_PUSH_STATE
#ifdef YY_USE_PROTOS
static void yy_push_state( int new_state )
#else
static void yy_push_state( new_state )
int new_state;
#endif
	{
	if ( yy_start_stack_ptr >= yy_start_stack_depth )
		{
		yy_size_t new_size;

		yy_start_stack_depth += YY_START_STACK_INCR;
		new_size = yy_start_stack_depth * sizeof( int );

		if ( ! yy_start_stack )
			yy_start_stack = (int *) yy_flex_alloc( new_size );

		else
			yy_start_stack = (int *) yy_flex_realloc(
					(void *) yy_start_stack, new_size );

		if ( ! yy_start_stack )
			YY_FATAL_ERROR(
			"out of memory expanding start-condition stack" );
		}

	yy_start_stack[yy_start_stack_ptr++] = YY_START;

	BEGIN(new_state);
	}
#endif


#ifndef YY_NO_POP_STATE
static void yy_pop_state()
	{
	if ( --yy_start_stack_ptr < 0 )
		YY_FATAL_ERROR( "start-condition stack underflow" );

	BEGIN(yy_start_stack[yy_start_stack_ptr]);
	}
#endif


#ifndef YY_NO_TOP_STATE
static int yy_top_state()
	{
	return yy_start_stack[yy_start_stack_ptr - 1];
	}
#endif

#ifndef YY_EXIT_FAILURE
#define YY_EXIT_FAILURE 2
#endif

#ifdef YY_USE_PROTOS
static void yy_fatal_error( yyconst char msg[] )
#else
static void yy_fatal_error( msg )
char msg[];
#endif
	{
	(void) fprintf( stderr, "%s\n", msg );
	exit( YY_EXIT_FAILURE );
	}



/* Redefine yyless() so it works in section 3 code. */

#undef yyless
#define yyless(n) \
	do \
		{ \
		/* Undo effects of setting up yytext. */ \
		yytext[yyleng] = yy_hold_char; \
		yy_c_buf_p = yytext + n; \
		yy_hold_char = *yy_c_buf_p; \
		*yy_c_buf_p = '\0'; \
		yyleng = n; \
		} \
	while ( 0 )


/* Internal utility routines. */

#ifndef yytext_ptr
#ifdef YY_USE_PROTOS
static void yy_flex_strncpy( char *s1, yyconst char *s2, int n )
#else
static void yy_flex_strncpy( s1, s2, n )
char *s1;
yyconst char *s2;
int n;
#endif
	{
	register int i;
	for ( i = 0; i < n; ++i )
		s1[i] = s2[i];
	}
#endif

#ifdef YY_NEED_STRLEN
#ifdef YY_USE_PROTOS
static int yy_flex_strlen( yyconst char *s )
#else
static int yy_flex_strlen( s )
yyconst char *s;
#endif
	{
	register int n;
	for ( n = 0; s[n]; ++n )
		;

	return n;
	}
#endif


#ifdef YY_USE_PROTOS
static void *yy_flex_alloc( yy_size_t size )
#else
static void *yy_flex_alloc( size )
yy_size_t size;
#endif
	{
	return (void *) malloc( size );
	}

#ifdef YY_USE_PROTOS
static void *yy_flex_realloc( void *ptr, yy_size_t size )
#else
static void *yy_flex_realloc( ptr, size )
void *ptr;
yy_size_t size;
#endif
	{
	/* The cast to (char *) in the following accommodates both
	 * implementations that use char* generic pointers, and those
	 * that use void* generic pointers.  It works with the latter
	 * because both ANSI C and C++ allow castless assignment from
	 * any pointer type to void*, and deal with argument conversions
	 * as though doing an assignment.
	 */
	return (void *) realloc( (char *) ptr, size );
	}

#ifdef YY_USE_PROTOS
static void yy_flex_free( void *ptr )
#else
static void yy_flex_free( ptr )
void *ptr;
#endif
	{
	free( ptr );
	}

#if YY_MAIN
int main()
	{
	yylex();
	return 0;
	}
#endif
#line 221 "conf_lex.l"


void
yyerror(err)
	char *err;
{
	mg_log(LOG_ERR, "config error at line %d: %s", conf_line, err);
	exit(EX_DATAERR);
	return;
}


syntax highlighted by Code2HTML, v. 0.9.1