~ubuntu-branches/ubuntu/hardy/lighttpd/hardy

« back to all changes in this revision

Viewing changes to src/configfile.h

  • Committer: Bazaar Package Importer
  • Author(s): Soren Hansen
  • Date: 2007-09-05 09:30:15 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20070905093015-pm98jekbu9ylcd3w
Tags: 1.4.17-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - Update maintainer field in debian/control.
  - Build against libgamin-dev rather than libfam-dev (fixes a warning
    during startup)
  - Make sure that upgrades succeed, even if we can't restart lighttpd.
  - Clean environment in init.d script.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
int config_parse_cmd(server *srv, config_t *context, const char *cmd);
22
22
data_unset *configparser_merge_data(data_unset *op1, const data_unset *op2);
23
23
 
 
24
void config_cond_cache_reset(server *srv, connection *con);
 
25
void config_cond_cache_reset_item(server *srv, connection *con, comp_key_t item);
 
26
 
 
27
#define config_cond_cache_reset_all_items(srv, con) \
 
28
        config_cond_cache_reset_item(srv, con, COMP_LAST_ELEMENT);
 
29
 
24
30
#endif