[IPv6 IRC-DEV] Modulo Hispano-IPv6 ipv6/ircd IPcheck.c,1.1.1.1,1.2 bsd.c,1.1.1.1,1.2 chkconf.c,1.1.1
Brought to you by:
zolty
From: Zolty <zo...@us...> - 2002-09-12 16:39:00
|
Update of /cvsroot/irc-dev/ipv6/ircd In directory usw-pr-cvs1:/tmp/cvs-serv6714/ircd Modified Files: IPcheck.c bsd.c chkconf.c ircd.c m_watch.c res.c s_auth.c s_bsd.c s_conf.c s_ping.c s_socks.c Log Message: INET6.1 Index: IPcheck.c =================================================================== RCS file: /cvsroot/irc-dev/ipv6/ircd/IPcheck.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- IPcheck.c 11 Sep 2002 10:09:08 -0000 1.1.1.1 +++ IPcheck.c 12 Sep 2002 16:38:57 -0000 1.2 @@ -20,7 +20,6 @@ /* This file should be edited in a window with a width of 141 characters */ #include "sys.h" -#include <netinet/in.h> #include "h.h" #include "IPcheck.h" #include "querycmds.h" Index: bsd.c =================================================================== RCS file: /cvsroot/irc-dev/ipv6/ircd/bsd.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- bsd.c 11 Sep 2002 10:09:08 -0000 1.1.1.1 +++ bsd.c 12 Sep 2002 16:38:57 -0000 1.2 @@ -20,7 +20,6 @@ #include "sys.h" #include <signal.h> -#include <sys/socket.h> /* Needed for send() */ #include "h.h" #include "struct.h" #include "s_bsd.h" Index: chkconf.c =================================================================== RCS file: /cvsroot/irc-dev/ipv6/ircd/chkconf.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- chkconf.c 11 Sep 2002 10:09:08 -0000 1.1.1.1 +++ chkconf.c 12 Sep 2002 16:38:57 -0000 1.2 @@ -22,15 +22,11 @@ #include <unistd.h> #endif #include <stdlib.h> -#include <sys/socket.h> #include <sys/stat.h> #include <ctype.h> #if HAVE_FCNTL_H #include <fcntl.h> #endif -#ifdef HPUX -#include <arpa/inet.h> -#endif /* HPUX */ #ifdef R_LINES #include <signal.h> #endif Index: ircd.c =================================================================== RCS file: /cvsroot/irc-dev/ipv6/ircd/ircd.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- ircd.c 11 Sep 2002 10:09:08 -0000 1.1.1.1 +++ ircd.c 12 Sep 2002 16:38:57 -0000 1.2 @@ -44,12 +44,9 @@ #include <syslog.h> #endif #ifdef CHROOTDIR -#include <netinet/in.h> -#include <arpa/nameser.h> #include <resolv.h> #endif #ifdef VIRTUAL_HOST -#include <sys/socket.h> /* Needed for AF_INET on some OS */ #endif #include "h.h" #include "res.h" Index: m_watch.c =================================================================== RCS file: /cvsroot/irc-dev/ipv6/ircd/m_watch.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- m_watch.c 11 Sep 2002 10:09:08 -0000 1.1.1.1 +++ m_watch.c 12 Sep 2002 16:38:57 -0000 1.2 @@ -107,6 +107,7 @@ if (!wptr) return; /* No esta en ningun notify */ +#ifdef BDD_VIP if(!ip_override) { if (cptr->user->virtualhost[0] == '\0') { make_virtualhost(cptr, 0,0); @@ -116,6 +117,7 @@ ip_override=ip_override_SeeHidden=cptr->user->host; } } +#endif wptr->lasttime = TStime(); @@ -136,7 +138,7 @@ } #endif } else { -#if defined(BDD) +#if defined(BDD_VIP) ip=cptr->user->virtualhost; if (IsHiddenViewer(acptr) || (cptr == acptr)) { ip=cptr->user->host; Index: res.c =================================================================== RCS file: /cvsroot/irc-dev/ipv6/ircd/res.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- res.c 11 Sep 2002 10:09:08 -0000 1.1.1.1 +++ res.c 12 Sep 2002 16:38:57 -0000 1.2 @@ -8,13 +8,9 @@ #include "sys.h" #include <signal.h> -#include <sys/socket.h> #if HAVE_UNISTD_H #include <unistd.h> #endif -#include <netinet/in.h> -#include <arpa/inet.h> -#include <arpa/nameser.h> #include <resolv.h> /* dn_skipname is really an internal function, we shouldn't be using it in res.c */ Index: s_auth.c =================================================================== RCS file: /cvsroot/irc-dev/ipv6/ircd/s_auth.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- s_auth.c 11 Sep 2002 10:09:08 -0000 1.1.1.1 +++ s_auth.c 12 Sep 2002 16:38:57 -0000 1.2 @@ -18,7 +18,6 @@ */ #include "sys.h" -#include <sys/socket.h> #if HAVE_SYS_FILE_H #include <sys/file.h> #endif @@ -31,9 +30,6 @@ #if HAVE_UNISTD_H #include <unistd.h> #endif -#ifdef HPUX -#include <arpa/inet.h> -#endif /* HPUX */ #if HAVE_FCNTL_H #include <fcntl.h> #endif Index: s_bsd.c =================================================================== RCS file: /cvsroot/irc-dev/ipv6/ircd/s_bsd.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- s_bsd.c 11 Sep 2002 10:09:09 -0000 1.1.1.1 +++ s_bsd.c 12 Sep 2002 16:38:57 -0000 1.2 @@ -20,7 +20,6 @@ #include "sys.h" #include <stdlib.h> -#include <sys/socket.h> #if HAVE_SYS_FILE_H #include <sys/file.h> #endif @@ -58,9 +57,6 @@ #include <syslog.h> #endif #include <sys/utsname.h> -#include <netinet/in.h> -#include <arpa/inet.h> -#include <arpa/nameser.h> #include <resolv.h> #include "h.h" #include "res.h" Index: s_conf.c =================================================================== RCS file: /cvsroot/irc-dev/ipv6/ircd/s_conf.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- s_conf.c 11 Sep 2002 10:09:09 -0000 1.1.1.1 +++ s_conf.c 12 Sep 2002 16:38:57 -0000 1.2 @@ -19,7 +19,6 @@ */ #include "sys.h" -#include <sys/socket.h> #if HAVE_FCNTL_H #include <fcntl.h> #endif @@ -42,9 +41,6 @@ #include <unistd.h> #endif #include <stdlib.h> -#include <netdb.h> -#include <netinet/in.h> -#include <arpa/inet.h> #ifdef USE_SYSLOG #include <syslog.h> #endif Index: s_ping.c =================================================================== RCS file: /cvsroot/irc-dev/ipv6/ircd/s_ping.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- s_ping.c 11 Sep 2002 10:09:09 -0000 1.1.1.1 +++ s_ping.c 12 Sep 2002 16:38:57 -0000 1.2 @@ -18,7 +18,6 @@ */ #include "sys.h" -#include <sys/socket.h> #if HAVE_SYS_FILE_H #include <sys/file.h> #endif @@ -38,8 +37,6 @@ #ifdef USE_SYSLOG #include <syslog.h> #endif -#include <netinet/in.h> -#include <arpa/inet.h> #include "h.h" #include "struct.h" #include "send.h" Index: s_socks.c =================================================================== RCS file: /cvsroot/irc-dev/ipv6/ircd/s_socks.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- s_socks.c 11 Sep 2002 10:09:09 -0000 1.1.1.1 +++ s_socks.c 12 Sep 2002 16:38:57 -0000 1.2 @@ -19,7 +19,6 @@ */ #include "sys.h" -#include <sys/socket.h> #if HAVE_SYS_FILE_H #include <sys/file.h> #endif @@ -32,9 +31,6 @@ #if HAVE_UNISTD_H #include <unistd.h> #endif -#ifdef HPUX -#include <arpa/inet.h> -#endif /* HPUX */ #if HAVE_FCNTL_H #include <fcntl.h> #endif |