summaryrefslogtreecommitdiffstats
path: root/server/tools/tools_util.h
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2009-09-08 15:42:10 +0200
committerStephen Gallagher <sgallagh@redhat.com>2009-09-08 15:10:50 -0400
commit7a9bee06e2bc5bcc75659e9a46bdffa870951d7a (patch)
tree491ec9370b59fd12bdc081629258d64604336a45 /server/tools/tools_util.h
parent889efbe608251def17c7ba6131fc9aa36c462dc2 (diff)
downloadsssd-7a9bee06e2bc5bcc75659e9a46bdffa870951d7a.tar.gz
sssd-7a9bee06e2bc5bcc75659e9a46bdffa870951d7a.tar.xz
sssd-7a9bee06e2bc5bcc75659e9a46bdffa870951d7a.zip
Remove shadow-utils support from tools
Removes the ability to proxy to shadow-utils. Also remove all the supporting functions for getting domain type, domain by id etc.
Diffstat (limited to 'server/tools/tools_util.h')
-rw-r--r--server/tools/tools_util.h18
1 files changed, 8 insertions, 10 deletions
diff --git a/server/tools/tools_util.h b/server/tools/tools_util.h
index 772ba36b8..a8275e840 100644
--- a/server/tools/tools_util.h
+++ b/server/tools/tools_util.h
@@ -78,18 +78,16 @@ int setup_db(struct tools_ctx **ctx);
void usage(poptContext pc, const char *error);
-int parse_groups(TALLOC_CTX *mem_ctx, const char *optstr, char ***_out);
-
-enum id_domain get_domain_type(struct tools_ctx *ctx,
- struct sss_domain_info *dom);
+int set_locale(void);
-int get_domain_by_id(struct tools_ctx *ctx,
- uint32_t id,
- struct sss_domain_info **_dom);
+int get_domain(struct ops_ctx *octx,
+ const char *fullname);
-int set_locale(void);
+int id_in_range(uint32_t id,
+ struct sss_domain_info *dom);
-int parse_name_domain(struct ops_ctx *octx,
- const char *fullname);
+int parse_groups(TALLOC_CTX *mem_ctx,
+ const char *optstr,
+ char ***_out);
#endif /* __TOOLS_UTIL_H__ */