From e115c25af2df3549fb44b260e516d8c93d2adc8a Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Fri, 20 Nov 2009 12:11:28 -0500 Subject: Add initial failover support for ldap and ipa The retun values are still not directly used with ldap libraries that still do their own name resolution, but this patch introduces a very basic framework to have a multiple providers in one domain use and share a single failover service if they want to. --- server/util/util.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'server/util/util.h') diff --git a/server/util/util.h b/server/util/util.h index 3ca43a409..b116a66a8 100644 --- a/server/util/util.h +++ b/server/util/util.h @@ -221,4 +221,8 @@ int backup_file(const char *src, int dbglvl); errno_t check_and_open_readonly(const char *filename, int *fd, const uid_t uid, const gid_t gid, const mode_t mode); +/* from util.c */ +int sss_split_list(TALLOC_CTX *memctx, const char *string, + const char *sep, char ***_list, int *c); + #endif /* __SSSD_UTIL_H__ */ -- cgit