2 * Copyright (c) 1995-1999, Index Data
3 * See the file LICENSE for details.
4 * Sebastian Hammer, Adam Dickmeiss
7 * Revision 1.4 1999-11-30 13:47:12 adam
8 * Improved installation. Moved header files to include/yaz.
10 * Revision 1.3 1999/08/27 09:40:32 adam
11 * Renamed logf function to yaz_log. Removed VC++ project files.
13 * Revision 1.2 1999/04/20 09:56:48 adam
14 * Added 'name' paramter to encoder/decoder routines (typedef Odr_fun).
15 * Modified all encoders/decoders to reflect this change.
17 * Revision 1.1 1999/04/16 14:45:55 adam
18 * Added interface for tcpd wrapper for access control.
29 int allow_severity = LOG_INFO;
30 int deny_severity = LOG_WARNING;
47 #include <yaz/comstack.h>
48 #include <yaz/statserv.h>
51 int check_ip_tcpd(void *cd, const char *addr, int len, int type)
53 const char *daemon_name = (const char *) cd;
57 if (daemon_name && *daemon_name)
60 struct request_info request_info;
63 char *host_name = 0, *host_addr = 0;
66 struct sockaddr_in *addr_in = (struct sockaddr_in *) addr;
68 if ((host = gethostbyaddr((char*)&addr_in->sin_addr,
69 sizeof(addr_in->sin_addr),
71 host_name = (char*) host->h_name;
72 host_addr = inet_ntoa(addr_in->sin_addr);
75 request_init(&request_info, RQ_DAEMON, daemon_name,
76 RQ_CLIENT_NAME, host_name,
77 RQ_CLIENT_SIN, addr_in,
78 RQ_CLIENT_ADDR, host_addr, 0);
80 request_init(&request_info, RQ_DAEMON, daemon_name,
81 RQ_CLIENT_SIN, addr_in,
82 RQ_CLIENT_ADDR, host_addr, 0);
83 i = hosts_access(&request_info);
86 yaz_log (LOG_DEBUG, "access denied from %s",
87 host_name ? host_name : host_addr);
90 yaz_log (LOG_DEBUG, "access granted from %s",
91 host_name ? host_name : host_addr);