1158115Sume/*-
2158115Sume * Copyright (c) 2004 Michael Bushkov <bushman@rsu.ru>
3158115Sume * All rights reserved.
4158115Sume *
5158115Sume * Redistribution and use in source and binary forms, with or without
6158115Sume * modification, are permitted provided that the following conditions
7158115Sume * are met:
8158115Sume * 1. Redistributions of source code must retain the above copyright
9158115Sume *    notice, this list of conditions and the following disclaimer.
10158115Sume * 2. Redistributions in binary form must reproduce the above copyright
11158115Sume *    notice, this list of conditions and the following disclaimer in the
12158115Sume *    documentation and/or other materials provided with the distribution.
13158115Sume *
14158115Sume * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15158115Sume * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16158115Sume * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17158115Sume * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18158115Sume * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19158115Sume * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20158115Sume * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21158115Sume * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22158115Sume * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23158115Sume * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24158115Sume * SUCH DAMAGE.
25158115Sume *
26158115Sume * $FreeBSD$
27158115Sume */
28158115Sume
29171795Sbushman#ifndef __NSCD_NSCDCLI_H__
30171795Sbushman#define __NSCD_NSCDCLI_H__
31158115Sume
32171795Sbushmanstruct nscd_connection_params {
33194112Sdes	char *socket_path;
34194112Sdes	struct timeval timeout;
35158115Sume};
36158115Sume
37171795Sbushmanstruct nscd_connection_ {
38194112Sdes	int sockfd;
39158115Sume	int read_queue;
40158115Sume	int write_queue;
41158115Sume};
42158115Sume
43158115Sume/* simple abstractions for not to write "struct" every time */
44194112Sdestypedef struct nscd_connection_ *nscd_connection;
45194112Sdestypedef struct nscd_connection_ *nscd_mp_write_session;
46194112Sdestypedef struct nscd_connection_ *nscd_mp_read_session;
47158115Sume
48171795Sbushman#define	INVALID_NSCD_CONNECTION	(NULL)
49158115Sume
50158115Sume/* initialization/destruction routines */
51194112Sdesnscd_connection	open_nscd_connection__(struct nscd_connection_params const *);
52194112Sdesvoid close_nscd_connection__(nscd_connection);
53194112Sdesint nscd_transform__(nscd_connection, const char *, int);
54158115Sume
55158115Sume#endif
56