From e65c65fc710fa030bfb8319efc43fcdc9ce5a26f Mon Sep 17 00:00:00 2001 From: Sumit Bose Date: Fri, 27 Feb 2009 20:32:31 +0100 Subject: first version of LOCAL pam backend --- server/responder/common/responder_cmd.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'server/responder/common') diff --git a/server/responder/common/responder_cmd.h b/server/responder/common/responder_cmd.h index 98a4b34e..15141a07 100644 --- a/server/responder/common/responder_cmd.h +++ b/server/responder/common/responder_cmd.h @@ -40,6 +40,28 @@ struct cli_request { struct sss_packet *out; }; +struct nss_ctx { + struct tevent_context *ev; + struct tevent_fd *lfde; + int lfd; + struct sysdb_ctx *sysdb; + struct confdb_ctx *cdb; + char *sock_name; + struct service_sbus_ctx *ss_ctx; + struct service_sbus_ctx *dp_ctx; + struct btreemap *domain_map; + char *default_domain; + + int cache_timeout; + + struct sbus_method *sss_sbus_methods; + struct sss_cmd_table *sss_cmds; + const char *sss_pipe_name; + const char *confdb_socket_path; + struct sbus_method *dp_methods; +}; + + struct cli_ctx { struct tevent_context *ev; struct nss_ctx *nctx; -- cgit