summaryrefslogtreecommitdiffstats
path: root/src/responder/common/negcache.h
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2010-09-13 09:44:18 -0400
committerStephen Gallagher <sgallagh@redhat.com>2010-10-13 09:49:37 -0400
commita88dba637d6b65b92e0ac23b0e5ecadfe97adaf7 (patch)
tree992784f378781956c39f5a468898f80dc87fdd75 /src/responder/common/negcache.h
parentf128b7b865062da662127712935dcc58bd022384 (diff)
downloadsssd-a88dba637d6b65b92e0ac23b0e5ecadfe97adaf7.tar.gz
sssd-a88dba637d6b65b92e0ac23b0e5ecadfe97adaf7.tar.xz
sssd-a88dba637d6b65b92e0ac23b0e5ecadfe97adaf7.zip
Add negative cache features for netgroups
Diffstat (limited to 'src/responder/common/negcache.h')
-rw-r--r--src/responder/common/negcache.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/responder/common/negcache.h b/src/responder/common/negcache.h
index 68be9f02e..fc857fce1 100644
--- a/src/responder/common/negcache.h
+++ b/src/responder/common/negcache.h
@@ -32,6 +32,8 @@ int sss_ncache_check_user(struct sss_nc_ctx *ctx, int ttl,
const char *domain, const char *name);
int sss_ncache_check_group(struct sss_nc_ctx *ctx, int ttl,
const char *domain, const char *name);
+int sss_ncache_check_netgr(struct sss_nc_ctx *ctx, int ttl,
+ const char *domain, const char *name);
int sss_ncache_check_uid(struct sss_nc_ctx *ctx, int ttl, uid_t uid);
int sss_ncache_check_gid(struct sss_nc_ctx *ctx, int ttl, gid_t gid);
@@ -43,6 +45,8 @@ int sss_ncache_set_user(struct sss_nc_ctx *ctx, bool permanent,
const char *domain, const char *name);
int sss_ncache_set_group(struct sss_nc_ctx *ctx, bool permanent,
const char *domain, const char *name);
+int sss_ncache_set_netgr(struct sss_nc_ctx *ctx, bool permanent,
+ const char *domain, const char *name);
int sss_ncache_set_uid(struct sss_nc_ctx *ctx, bool permanent, uid_t uid);
int sss_ncache_set_gid(struct sss_nc_ctx *ctx, bool permanent, gid_t gid);