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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
/*
** id_query.c Transmit a query to an IDENT server
**
** Author: Peter Eriksson <pen@lysator.liu.se>
*/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdio.h>
#include <errno.h>
#include <signal.h>
#include <stdlib.h>
#include <string.h>
#if HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#if HAVE_UNISTD_H
# include <unistd.h>
#endif
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#else
# if HAVE_SYS_TIME_H
# include <sys/time.h>
# endif
#endif
#define IN_LIBIDENT_SRC
#include "ident.h"
int id_query (ident_t *id, int lport, int fport, struct timeval *timeout)
{
__sighandler_t old_sig;
int res;
char buf[80];
fd_set ws;
sprintf(buf, "%d , %d\r\n", lport, fport);
if (timeout)
{
FD_ZERO(&ws);
FD_SET(id->fd, &ws);
res = select(FD_SETSIZE, NULL, &ws, NULL, timeout);
if (res < 0)
return -1;
if (res == 0)
{
errno = ETIMEDOUT;
return -1;
}
}
old_sig = signal(SIGPIPE, SIG_IGN);
res = write(id->fd, buf, strlen(buf));
signal(SIGPIPE, old_sig);
return res;
}
|