blob: c35cb7ab947d0565860783e2f143fb177ced20d8 [file] [log] [blame]
Tomas Cejka04e08f42014-03-27 19:52:34 +01001#ifndef MOD_NETCONF_CONFIG_H
2#define MOD_NETCONF_CONFIG_H
3
Michal Vaskoc3146782015-11-04 14:46:41 +01004#define NOTIFICATION_QUEUE_SIZE 10
5
Tomas Cejka04e08f42014-03-27 19:52:34 +01006/** username for change of UID of process */
7#define SU_USER "@SU_USER@"
8
9/** groupname for change of UID of process */
10#define SU_GROUP "@SU_GROUP@"
11
12/** username for change of ownership of socket file */
13#define CHOWN_USER "@CHOWN_USER@"
14
15/** groupname for change of ownership of socket file */
16#define CHOWN_GROUP "@CHOWN_GROUP@"
17
Michal Vaskodd2c41d2016-09-06 11:25:57 +020018/** path to the notification server certificate */
19#define NOTIF_SERVER_CERT_PATH "@CERT_PATH@"
20
21/** path to the notification server private key */
22#define NOTIF_SERVER_PRIVKEY_PATH "@PRIVKEY_PATH@"
Tomas Cejka04e08f42014-03-27 19:52:34 +010023
24#endif
25