1
0
mirror of https://github.com/osmarks/ngircd.git synced 2025-01-23 13:56:51 +00:00

Fixed (optional) TCP Wrapper test which was broken and could result in

false results. Thanks to Fuminori Tanizaki <tany@mcnet.ad.jp>!
This commit is contained in:
Alexander Barton 2004-02-03 13:54:36 +00:00
parent aaaca987cd
commit 47d1cf9b55
2 changed files with 5 additions and 2 deletions

View File

@ -12,6 +12,8 @@
ngIRCd 0.7-CVS
- Fixed (optional) TCP Wrapper test which was broken and could result in
false results. Thanks to Fuminori Tanizaki <tany@mcnet.ad.jp>!
- Removed "USE_" prefixes of configuration #defines.
ngIRCd 0.7.6 (2003-12-05)
@ -488,4 +490,4 @@ ngIRCd 0.0.1, 31.12.2001
--
$Id: ChangeLog,v 1.188.2.20 2003/12/26 16:16:48 alex Exp $
$Id: ChangeLog,v 1.188.2.21 2004/02/03 13:54:36 alex Exp $

View File

@ -16,7 +16,7 @@
#include "portab.h"
static char UNUSED id[] = "$Id: conn.c,v 1.122.2.3 2003/12/26 16:16:48 alex Exp $";
static char UNUSED id[] = "$Id: conn.c,v 1.122.2.4 2004/02/03 13:54:36 alex Exp $";
#include "imp.h"
#include <assert.h>
@ -937,6 +937,7 @@ New_Connection( INT Sock )
#ifdef TCPWRAP
/* Validate socket using TCP Wrappers */
request_init( &req, RQ_DAEMON, PACKAGE_NAME, RQ_FILE, new_sock, RQ_CLIENT_SIN, &new_addr, NULL );
fromhost(&req);
if( ! hosts_access( &req ))
{
/* Access denied! */