blob: 879672141b789f17553467624f1c342645366bc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/*
nslcd-server.h - server socket routines
Copyright (C) 2006 West Consulting
Copyright (C) 2006 Arthur de Jong
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
MA 02110-1301 USA
*/
#include "nslcd.h"
/* returns a socket ready to answer requests from the client,
return <0 on error */
int nslcd_server_open(void);
/* read a request message, returns <0 in case of errors,
on errors, socket is closed by callee */
int nslcd_server_readrequest(int socket);
/* write a response message */
int nslcd_client_writeresponse(int socket, void *buf);
|