comparison src/libident/id_close.c @ 0:08114f7dcc23 0.2.21

this is masqmail-0.2.21 from oliver kurth
author meillo@marmaro.de
date Fri, 26 Sep 2008 17:05:23 +0200
parents
children 26e34ae9a3e3
comparison
equal deleted inserted replaced
-1:000000000000 0:08114f7dcc23
1 /*
2 ** id_close.c Close a connection to an IDENT server
3 **
4 ** Author: Peter Eriksson <pen@lysator.liu.se>
5 */
6
7 #ifdef NeXT3
8 # include <libc.h>
9 #endif
10
11 #ifdef HAVE_ANSIHEADERS
12 # include <stdlib.h>
13 # include <unistd.h>
14 #endif
15
16 #define IN_LIBIDENT_SRC
17 #include "ident.h"
18
19 int id_close __P1(ident_t *, id)
20 {
21 int res;
22
23 res = close(id->fd);
24 free(id);
25
26 return res;
27 }
28
29