diff options
author | Sumit Bose <sbose@redhat.com> | 2013-04-22 16:29:51 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-05-02 19:33:56 +0200 |
commit | f0944fdd627bd684ff36c9670dc857ffdedc343f (patch) | |
tree | e878a771c59670a58c3801c2810f71c3205fbf0b /src/providers/data_provider.h | |
parent | 206329d3901738036352f2ac1e8d7804f728861d (diff) | |
download | sssd-f0944fdd627bd684ff36c9670dc857ffdedc343f.tar.gz sssd-f0944fdd627bd684ff36c9670dc857ffdedc343f.tar.xz sssd-f0944fdd627bd684ff36c9670dc857ffdedc343f.zip |
Add two new request types to the data-provider interface
The patch adds two new request types for SID related requests. The first
one is used if a SID is given and the corresponding object should be
found. The second one can be used if the SID for an object is requested
but it is not clear if the object is a user or a group.
Diffstat (limited to 'src/providers/data_provider.h')
-rw-r--r-- | src/providers/data_provider.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/providers/data_provider.h b/src/providers/data_provider.h index 313681448..d086d5d2f 100644 --- a/src/providers/data_provider.h +++ b/src/providers/data_provider.h @@ -151,6 +151,8 @@ #define BE_REQ_SUDO_RULES 0x0007 #define BE_REQ_AUTOFS 0x0009 #define BE_REQ_HOST 0x0010 +#define BE_REQ_BY_SECID 0x0011 +#define BE_REQ_USER_AND_GROUP 0x0012 #define BE_REQ_TYPE_MASK 0x00FF #define BE_REQ_FAST 0x1000 |