From f9961e5f82e0ef474d6492371bfdf9e74e208a99 Mon Sep 17 00:00:00 2001 From: Pavel Březina Date: Tue, 19 Mar 2013 15:53:44 +0100 Subject: DNS sites support - SRV lookup plugin interface https://fedorahosted.org/sssd/ticket/1032 Introduces two new error codes: - ERR_SRV_NOT_FOUND - ERR_SRV_LOOKUP_ERROR Since id_provider is authoritative in case of SRV plugin choise, ability to override the selected pluging during runtime is not desirable. We rely on the fact that id_provider is initialized before all other providers, thus the plugin is set correctly. --- src/util/util_errors.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/util/util_errors.h') diff --git a/src/util/util_errors.h b/src/util/util_errors.h index b4dfaf85f..4f7c0086e 100644 --- a/src/util/util_errors.h +++ b/src/util/util_errors.h @@ -63,6 +63,8 @@ enum sssd_errors { ERR_ACCOUNT_EXPIRED, ERR_PASSWORD_EXPIRED, ERR_ACCESS_DENIED, + ERR_SRV_NOT_FOUND, + ERR_SRV_LOOKUP_ERROR, ERR_LAST /* ALWAYS LAST */ }; -- cgit