libini_config
0.6.1
|
#include <ini_configobj.h>
Data Fields | |
uint32_t | flags |
uid_t | uid |
gid_t | gid |
mode_t | mode |
mode_t | mask |
Structure to pass access check parameters to augmentation function.
uint32_t access_check::flags |
Define what to check. One can check file permissions with mask, uid, and gid of the file. See Access control check flags constants.
uid_t access_check::uid |
Expected uid of the file.
gid_t access_check::gid |
Expected gid of the file.
mode_t access_check::mode |
Expected mode of the file.
mode_t access_check::mask |
Mask to use in the mode check. Mask is always adjusted to include at least S_IRWXU, S_IRWXG and S_IRWXO.