This commit is contained in:
fishwaldo 2002-09-13 06:56:46 +00:00
parent 580ea66a45
commit d73bbc22c7
6 changed files with 40 additions and 13 deletions

View file

@ -1,6 +1,6 @@
/************************************************************************
* IRC - Internet Relay Chat, doc/example_module.c
* Copyright (C) 2001 Hybrid Development Team
* IRC - Internet Relay Chat, m_sethost.c
* Copyright (C) 2002 NeoIRCd Development Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* $Id: m_sethost.c,v 1.2 2002/09/05 10:48:36 fishwaldo Exp $
* $Id: m_sethost.c,v 1.3 2002/09/13 06:54:34 fishwaldo Exp $
*/
/* List of ircd includes from ../include/ */
@ -79,7 +79,7 @@ _moddeinit(void)
/* When we last modified the file (shown in /modlist), this is usually:
*/
const char *_version = "$Revision: 1.2 $";
const char *_version = "$Revision: 1.3 $";
#endif
/*

View file

@ -1,6 +1,6 @@
/************************************************************************
* IRC - Internet Relay Chat, doc/example_module.c
* Copyright (C) 2001 Hybrid Development Team
* IRC - Internet Relay Chat, m_svscmds.c
* Copyright (C) 2002 NeoIRCd Development Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* $Id: m_svscmds.c,v 1.2 2002/09/12 05:45:20 fishwaldo Exp $
* $Id: m_svscmds.c,v 1.3 2002/09/13 06:54:34 fishwaldo Exp $
*/
/* List of ircd includes from ../include/ */
@ -104,7 +104,7 @@ _moddeinit(void)
/* When we last modified the file (shown in /modlist), this is usually:
*/
const char *_version = "$Revision: 1.2 $";
const char *_version = "$Revision: 1.3 $";
#endif
/*

View file

@ -1,6 +1,6 @@
/************************************************************************
* IRC - Internet Relay Chat. m_vhost.c module
* Copyright (C) 2001 Hybrid Development Team
* Copyright (C) 2002 NeoIRCd development Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* $Id: m_vhost.c,v 1.1 2002/09/12 07:15:58 fishwaldo Exp $
* $Id: m_vhost.c,v 1.2 2002/09/13 06:54:34 fishwaldo Exp $
*/
/* List of ircd includes from ../include/ */
@ -86,7 +86,7 @@ _moddeinit(void)
/* When we last modified the file (shown in /modlist), this is usually:
*/
const char *_version = "$Revision: 1.1 $";
const char *_version = "$Revision: 1.2 $";
#endif
/*

View file

@ -1,3 +1,28 @@
/*
* NeoIRCd: NeoStats Group. Based on Hybird7
* cloak.c: Provides Hostname Cloaking
*
* Copyright (C) 2000-2002 Edward Brocklesby, Hybrid Development Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*
* $Id: cloak.c,v 1.2 2002/09/13 06:56:45 fishwaldo Exp $
*/
/************************************************************************
* Unreal Internet Relay Chat Daemon, src/cloak.c
* This program is free software; you can redistribute it and/or modify

View file

@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* $Id: ircd_signal.c,v 1.2 2002/08/13 14:45:12 fishwaldo Exp $
* $Id: ircd_signal.c,v 1.3 2002/09/13 06:56:45 fishwaldo Exp $
*/
#include "stdinc.h"
@ -27,6 +27,7 @@
#include "s_log.h"
#include "memory.h"
#include "s_bsd.h"
/*
* dummy_handler - don't know if this is really needed but if alarm is still
* being used we probably will

View file

@ -16,9 +16,10 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* $Id: match.c,v 1.2 2002/08/13 14:45:12 fishwaldo Exp $
* $Id: match.c,v 1.3 2002/09/13 06:56:46 fishwaldo Exp $
*
*/
#include "stdinc.h"
#include "irc_string.h"
#include "config.h"