You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
753 B
31 lines
753 B
8 years ago
|
/* Copyright 2016 Alex 'AdUser' Z (ad_user@runbox.com)
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License version 2 as
|
||
|
* published by the Free Software Foundation.
|
||
|
*/
|
||
|
#ifndef F2B_APPCONFIG_H_
|
||
|
#define F2B_APPCONFIG_H_
|
||
|
|
||
|
#include <pwd.h>
|
||
|
#include <grp.h>
|
||
|
|
||
|
typedef struct f2b_appconfig_t {
|
||
|
bool daemon;
|
||
|
uid_t uid;
|
||
|
gid_t gid;
|
||
|
int csock;
|
||
|
char logdest[CONFIG_KEY_MAX];
|
||
|
char config_path[PATH_MAX];
|
||
|
char logfile_path[PATH_MAX];
|
||
|
char csocket_path[PATH_MAX];
|
||
|
char pidfile_path[PATH_MAX];
|
||
|
char statedir_path[PATH_MAX];
|
||
|
} f2b_appconfig_t;
|
||
|
|
||
|
extern f2b_appconfig_t appconfig;
|
||
|
|
||
|
void f2b_appconfig_update(f2b_config_section_t *section);
|
||
|
|
||
|
#endif /* F2B_APPCONFIG_H_ */
|