Tomas Cejka | 04e08f4 | 2014-03-27 19:52:34 +0100 | [diff] [blame] | 1 | #ifndef MOD_NETCONF_CONFIG_H |
| 2 | #define MOD_NETCONF_CONFIG_H |
| 3 | |
Michal Vasko | c314678 | 2015-11-04 14:46:41 +0100 | [diff] [blame^] | 4 | #define NOTIFICATION_QUEUE_SIZE 10 |
| 5 | |
Tomas Cejka | 04e08f4 | 2014-03-27 19:52:34 +0100 | [diff] [blame] | 6 | /** 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 | |
| 18 | |
| 19 | #endif |
| 20 | |