~ubuntu-branches/ubuntu/trusty/vsftpd/trusty-proposed

« back to all changes in this revision

Viewing changes to parseconf.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Jacobowitz
  • Date: 2002-01-27 20:07:08 UTC
  • Revision ID: james.westby@ubuntu.com-20020127200708-6e1feq6g9vkyi3rl
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef VSF_PARSECONF_H
 
2
#define VSF_PARSECONF_H
 
3
 
 
4
/* vsf_parseconf_load_file()
 
5
 * PURPOSE
 
6
 * Parse the given file as a vsftpd config file. If the file cannot be
 
7
 * opened for whatever reason, a fatal error is raised. If the file contains
 
8
 * any syntax errors, a fatal error is raised.
 
9
 * If the call returns (no fatal error raised), then the config file was
 
10
 * parsed and the global config settings will have been updated.
 
11
 * PARAMETERS
 
12
 * p_filename     - the name of the config file to parse
 
13
 */
 
14
void vsf_parseconf_load_file(const char* p_filename);
 
15
 
 
16
#endif /* VSF_PARSECONF_H */
 
17