autofs_private.h revision c83ebdbc0629313ef6594215ed1674b9a783cfdd
/*
Authors:
Jakub Hrozek <jhrozek@redhat.com>
Copyright (C) 2012 Red Hat
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _AUTOFSSRV_PRIVATE_H_
#define _AUTOFSSRV_PRIVATE_H_
#define SSS_AUTOFS_SBUS_SERVICE_VERSION 0x0001
#define SSS_AUTOFS_SBUS_SERVICE_NAME "autofs"
#define SSS_AUTOFS_PROTO_VERSION 0x001
struct autofs_ctx {
int neg_timeout;
};
struct autofs_cmd_ctx {
char *mapname;
char *key;
bool check_next;
};
struct autofs_dom_ctx {
struct autofs_cmd_ctx *cmd_ctx;
struct sss_domain_info *domain;
bool check_provider;
/* cache results */
struct ldb_message *map;
struct ldb_message **entries;
struct autofs_map_ctx *map_ctx;
};
struct autofs_map_ctx {
/* state of the map entry */
bool ready;
bool found;
/* requests */
struct setent_req_list *reqs;
char *mapname;
/* map entry */
struct ldb_message *map;
struct ldb_message **entries;
};
struct sss_cmd_table *get_autofs_cmds(void);
enum sss_dp_autofs_type {
};
struct tevent_req *
struct sss_domain_info *dom,
bool fast_reply,
enum sss_dp_autofs_type type,
const char *name);
struct tevent_req *req,
char **err_msg);
#endif /* _AUTOFSSRV_PRIVATE_H_ */