~ubuntu-branches/ubuntu/gutsy/syslog-ng/gutsy-security

« back to all changes in this revision

Viewing changes to src/cfgfile.h

  • Committer: Bazaar Package Importer
  • Author(s): Magosányi Árpád (mag)
  • Date: 2004-03-13 18:35:37 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040313183537-g0fsc2j2y1wbxage
Tags: 1.6.2-3
* changed manpage to better reflect -v. Closes: #228377
* fixed build-depends, hopefully correctly now:( Closes: #237668

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 *
20
20
 * Inspired by nsyslog, originally written by Darren Reed.
21
21
 *
22
 
 * $Id: cfgfile.h,v 1.22 2001/08/26 15:06:25 bazsi Exp $
 
22
 * $Id: cfgfile.h,v 1.26 2003/01/08 09:31:37 bazsi Exp $
23
23
 *
24
24
 ***************************************************************************/
25
25
 
52
52
        (stats_freq simple UINT32)
53
53
        (time_reopen simple UINT32)
54
54
        (time_reap simple UINT32)
55
 
        (log_fifo_size simple UINT32)
 
55
        (log_fifo_size simple int)
56
56
        (use_time_recvd simple UINT32)
57
57
        (use_fqdn simple UINT32)
58
58
        (use_dns simple UINT32)
 
59
        (check_hostname simple UINT32)
 
60
        (bad_hostname pointer UINT8)
59
61
        (create_dirs simple UINT32)
60
62
        (uid simple int)
61
63
        (gid simple int)
70
72
        (cache simple "struct nscache *")
71
73
        (gc_busy_threshold simple UINT32)
72
74
        (gc_idle_threshold simple UINT32)
 
75
        ;
 
76
        (log_msg_size simple UINT32)
73
77
        ; internal messages should come from this source
74
78
        (internal object log_handler)
75
79
        (sources object log_source_group)
126
130
void cfg_set_dir_owner(char *uid);
127
131
void cfg_set_dir_group(char *gid);
128
132
void cfg_set_dir_perm(int perm);
129
 
 
130
 
 
131
 
 
132
 
 
 
133
void cfg_set_bad_hostname(char *bad_hostname);
133
134
 
134
135
 
135
136
struct syslog_config *make_syslog_config(const char *name, struct io_backend *backend);