blob: 3ea3199140dd299fb0fe83cd0bcb73693ad44bc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/*
(C) 2009-2011 Mika Ilmaranta <ilmis@nullnet.fi>
License: GPLv2
*/
#ifndef __GLOBALS_H__
#define __GLOBALS_H__
#include "config.h"
void set_prog(char *val);
char *get_prog(void);
void set_cont(const int val);
int get_cont(void);
void set_dump(const int val);
int get_dump(void);
void set_ident(const int val);
int get_ident(void);
void set_reload_cfg(const int val);
int get_reload_cfg(void);
void set_dump_if_list(const int val);
int get_dump_if_list(void);
void set_configfile(char *val);
char *get_configfile(void);
void set_pidfile(char *val);
char *get_pidfile(void);
void set_nodaemon(const int val);
int get_nodaemon(void);
char *get_status_str(STATUS val);
#endif
/* EOF */
|