~ubuntu-branches/ubuntu/natty/lighttpd/natty

« back to all changes in this revision

Viewing changes to src/configfile.h

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Marek
  • Date: 2005-11-26 11:48:51 UTC
  • Revision ID: james.westby@ubuntu.com-20051126114851-76t9q0rrwbzjnt2t
Tags: upstream-1.4.8
ImportĀ upstreamĀ versionĀ 1.4.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _CONFIG_PARSER_H_
 
2
#define _CONFIG_PARSER_H_
 
3
 
 
4
#include "array.h"
 
5
#include "buffer.h"
 
6
#include "server.h"
 
7
 
 
8
typedef struct {
 
9
        server *srv;
 
10
        int     ok;
 
11
        array  *all_configs;
 
12
        array  *configs_stack; /* to parse nested block */
 
13
        data_config *current; /* current started with { */
 
14
        buffer *basedir;
 
15
} config_t;
 
16
 
 
17
void *configparserAlloc(void *(*mallocProc)(size_t));
 
18
void configparserFree(void *p, void (*freeProc)(void*));
 
19
void configparser(void *yyp, int yymajor, buffer *yyminor, config_t *ctx);
 
20
int config_parse_file(server *srv, config_t *context, const char *fn);
 
21
int config_parse_cmd(server *srv, config_t *context, const char *cmd);
 
22
data_unset *configparser_merge_data(data_unset *op1, const data_unset *op2);
 
23
 
 
24
#endif