masqmail
view src/libident/id_close.c @ 237:5f9f3a65032e
refactoring: new function split_rcpts() replaces two others
split_rcpts() merges rcptlist_with_one_of_hostlist() and
rcptlist_with_addr_is_local() into one with hardly adding complexity
I'd actually say that the overall complexity decreased.
Have a look at the comment for split_rcpts() in route.c
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Fri, 22 Oct 2010 11:56:47 -0300 |
parents | 08114f7dcc23 |
children |
line source
1 /*
2 ** id_close.c Close a connection to an IDENT server
3 **
4 ** Author: Peter Eriksson <pen@lysator.liu.se>
5 */
7 #ifdef NeXT3
8 # include <libc.h>
9 #endif
11 #ifdef HAVE_ANSIHEADERS
12 # include <stdlib.h>
13 # include <unistd.h>
14 #endif
16 #define IN_LIBIDENT_SRC
17 #include "ident.h"
19 int
20 id_close __P1(ident_t *, id)
21 {
22 int res;
24 res = close(id->fd);
25 free(id);
27 return res;
28 }