1
0
mirror of https://github.com/osmarks/ngircd.git synced 2025-01-30 09:14:44 +00:00

- new file header format (in english);

- new file ident semantics.
This commit is contained in:
Alexander Barton 2002-12-12 12:24:18 +00:00
parent c7f075236b
commit 490f28ffd1
19 changed files with 153 additions and 177 deletions

View File

@ -2,16 +2,13 @@
* ngIRCd -- The Next Generation IRC Daemon * ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
* *
* Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen * This program is free software; you can redistribute it and/or modify
* der GNU General Public License (GPL), wie von der Free Software Foundation * it under the terms of the GNU General Public License as published by
* herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 * the Free Software Foundation; either version 2 of the License, or
* der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. * (at your option) any later version.
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * Please read the file COPYING, README and AUTHORS for more information.
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
* *
* $Id: channel.c,v 1.34 2002/11/22 17:57:15 alex Exp $ * Channel management
*
* channel.c: Management der Channels
*/ */
@ -20,6 +17,8 @@
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: channel.c,v 1.35 2002/12/12 12:24:18 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -2,23 +2,13 @@
* ngIRCd -- The Next Generation IRC Daemon * ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
* *
* Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen * This program is free software; you can redistribute it and/or modify
* der GNU General Public License (GPL), wie von der Free Software Foundation * it under the terms of the GNU General Public License as published by
* herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 * the Free Software Foundation; either version 2 of the License, or
* der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. * (at your option) any later version.
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * Please read the file COPYING, README and AUTHORS for more information.
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
* *
* $Id: client.c,v 1.64 2002/12/03 18:57:44 alex Exp $ * Client management.
*
* client.c: Management aller Clients
*
* Der Begriff "Client" ist in diesem Fall evtl. etwas verwirrend: Clients sind
* alle Verbindungen, die im gesamten(!) IRC-Netzwerk bekannt sind. Das sind IRC-
* Clients (User), andere Server und IRC-Services.
* Ueber welchen IRC-Server die Verbindung nun tatsaechlich in das Netzwerk her-
* gestellt wurde, muss der jeweiligen Struktur entnommen werden. Ist es dieser
* Server gewesen, so existiert eine entsprechende CONNECTION-Struktur.
*/ */
@ -27,6 +17,8 @@
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: client.c,v 1.65 2002/12/12 12:24:18 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
#include <unistd.h> #include <unistd.h>

View File

@ -2,21 +2,20 @@
* ngIRCd -- The Next Generation IRC Daemon * ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
* *
* Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen * This program is free software; you can redistribute it and/or modify
* der GNU General Public License (GPL), wie von der Free Software Foundation * it under the terms of the GNU General Public License as published by
* herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 * the Free Software Foundation; either version 2 of the License, or
* der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. * (at your option) any later version.
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * Please read the file COPYING, README and AUTHORS for more information.
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
* *
* $Id: conn.c,v 1.103 2002/12/03 18:57:10 alex Exp $ * Connection management
*
* connect.h: Verwaltung aller Netz-Verbindungen ("connections")
*/ */
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: conn.c,v 1.104 2002/12/12 12:24:18 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
#include <stdarg.h> #include <stdarg.h>

View File

@ -2,21 +2,20 @@
* ngIRCd -- The Next Generation IRC Daemon * ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
* *
* Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen * This program is free software; you can redistribute it and/or modify
* der GNU General Public License (GPL), wie von der Free Software Foundation * it under the terms of the GNU General Public License as published by
* herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 * the Free Software Foundation; either version 2 of the License, or
* der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. * (at your option) any later version.
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * Please read the file COPYING, README and AUTHORS for more information.
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
* *
* $Id: hash.c,v 1.5 2002/05/27 12:54:07 alex Exp $ * Hash calculation
*
* hash.c: Hash-Werte berechnen
*/ */
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: hash.c,v 1.6 2002/12/12 12:24:18 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
#include <string.h> #include <string.h>

View File

@ -2,21 +2,20 @@
* ngIRCd -- The Next Generation IRC Daemon * ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
* *
* Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen * This program is free software; you can redistribute it and/or modify
* der GNU General Public License (GPL), wie von der Free Software Foundation * it under the terms of the GNU General Public License as published by
* herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 * the Free Software Foundation; either version 2 of the License, or
* der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. * (at your option) any later version.
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * Please read the file COPYING, README and AUTHORS for more information.
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
* *
* $Id: irc-channel.c,v 1.17 2002/11/30 17:39:56 alex Exp $ * IRC channel commands
*
* irc-channel.c: IRC-Channel-Befehle
*/ */
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: irc-channel.c,v 1.18 2002/12/12 12:24:18 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
#include <string.h> #include <string.h>

View File

@ -2,21 +2,20 @@
* ngIRCd -- The Next Generation IRC Daemon * ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
* *
* Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen * This program is free software; you can redistribute it and/or modify
* der GNU General Public License (GPL), wie von der Free Software Foundation * it under the terms of the GNU General Public License as published by
* herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 * the Free Software Foundation; either version 2 of the License, or
* der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. * (at your option) any later version.
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * Please read the file COPYING, README and AUTHORS for more information.
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
* *
* $Id: irc-info.c,v 1.4 2002/12/02 13:45:51 alex Exp $ * IRC info commands
*
* irc-info.c: IRC-Info-Befehle
*/ */
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: irc-info.c,v 1.5 2002/12/12 12:24:18 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
#include <errno.h> #include <errno.h>

View File

@ -2,21 +2,20 @@
* ngIRCd -- The Next Generation IRC Daemon * ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
* *
* Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen * This program is free software; you can redistribute it and/or modify
* der GNU General Public License (GPL), wie von der Free Software Foundation * it under the terms of the GNU General Public License as published by
* herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 * the Free Software Foundation; either version 2 of the License, or
* der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. * (at your option) any later version.
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * Please read the file COPYING, README and AUTHORS for more information.
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
* *
* $Id: irc-login.c,v 1.26 2002/12/03 18:56:33 alex Exp $ * Login and logout
*
* irc-login.c: Anmeldung und Abmeldung im IRC
*/ */
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: irc-login.c,v 1.27 2002/12/12 12:24:18 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
#include <stdio.h> #include <stdio.h>

View File

@ -2,21 +2,20 @@
* ngIRCd -- The Next Generation IRC Daemon * ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
* *
* Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen * This program is free software; you can redistribute it and/or modify
* der GNU General Public License (GPL), wie von der Free Software Foundation * it under the terms of the GNU General Public License as published by
* herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 * the Free Software Foundation; either version 2 of the License, or
* der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. * (at your option) any later version.
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * Please read the file COPYING, README and AUTHORS for more information.
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
* *
* $Id: irc-mode.c,v 1.16 2002/11/30 15:04:57 alex Exp $ * IRC commands for mode changes (MODE, AWAY, ...)
*
* irc-mode.c: IRC-Befehle zur Mode-Aenderung (MODE, AWAY, ...)
*/ */
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: irc-mode.c,v 1.17 2002/12/12 12:24:18 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
#include <string.h> #include <string.h>

View File

@ -2,21 +2,20 @@
* ngIRCd -- The Next Generation IRC Daemon * ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
* *
* Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen * This program is free software; you can redistribute it and/or modify
* der GNU General Public License (GPL), wie von der Free Software Foundation * it under the terms of the GNU General Public License as published by
* herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 * the Free Software Foundation; either version 2 of the License, or
* der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. * (at your option) any later version.
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * Please read the file COPYING, README and AUTHORS for more information.
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
* *
* $Id: irc-op.c,v 1.10 2002/11/30 15:04:57 alex Exp $ * Channel operator commands
*
* irc-op.c: Befehle zur Channel-Verwaltung
*/ */
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: irc-op.c,v 1.11 2002/12/12 12:24:18 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
#include <string.h> #include <string.h>

View File

@ -2,21 +2,22 @@
* ngIRCd -- The Next Generation IRC Daemon * ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
* *
* Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen * This program is free software; you can redistribute it and/or modify
* der GNU General Public License (GPL), wie von der Free Software Foundation * it under the terms of the GNU General Public License as published by
* herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 * the Free Software Foundation; either version 2 of the License, or
* der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. * (at your option) any later version.
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * Please read the file COPYING, README and AUTHORS for more information.
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
* *
* $Id: irc-oper.c,v 1.11 2002/11/30 15:04:57 alex Exp $ * $Id: irc-oper.c,v 1.12 2002/12/12 12:24:18 alex Exp $
* *
* irc-oper.c: IRC-Operator-Befehle * IRC operator commands
*/ */
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: irc-oper.c,v 1.12 2002/12/12 12:24:18 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
#include <string.h> #include <string.h>

View File

@ -2,21 +2,20 @@
* ngIRCd -- The Next Generation IRC Daemon * ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
* *
* Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen * This program is free software; you can redistribute it and/or modify
* der GNU General Public License (GPL), wie von der Free Software Foundation * it under the terms of the GNU General Public License as published by
* herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 * the Free Software Foundation; either version 2 of the License, or
* der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. * (at your option) any later version.
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * Please read the file COPYING, README and AUTHORS for more information.
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
* *
* $Id: irc-server.c,v 1.23 2002/11/30 15:04:57 alex Exp $ * IRC commands for server links
*
* irc-server.c: IRC-Befehle fuer Server-Links
*/ */
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: irc-server.c,v 1.24 2002/12/12 12:24:18 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
#include <stdio.h> #include <stdio.h>

View File

@ -2,21 +2,20 @@
* ngIRCd -- The Next Generation IRC Daemon * ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
* *
* Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen * This program is free software; you can redistribute it and/or modify
* der GNU General Public License (GPL), wie von der Free Software Foundation * it under the terms of the GNU General Public License as published by
* herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 * the Free Software Foundation; either version 2 of the License, or
* der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. * (at your option) any later version.
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * Please read the file COPYING, README and AUTHORS for more information.
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
* *
* $Id: irc-write.c,v 1.12 2002/11/04 13:26:00 alex Exp $ * Sending IRC commands over the network
*
* irc-write.c: IRC-Texte und Befehle ueber Netzwerk versenden
*/ */
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: irc-write.c,v 1.13 2002/12/12 12:24:18 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
#include <stdarg.h> #include <stdarg.h>

View File

@ -2,21 +2,20 @@
* ngIRCd -- The Next Generation IRC Daemon * ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
* *
* Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen * This program is free software; you can redistribute it and/or modify
* der GNU General Public License (GPL), wie von der Free Software Foundation * it under the terms of the GNU General Public License as published by
* herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 * the Free Software Foundation; either version 2 of the License, or
* der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. * (at your option) any later version.
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * Please read the file COPYING, README and AUTHORS for more information.
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
* *
* $Id: irc.c,v 1.106 2002/12/12 11:40:41 alex Exp $ * IRC commands
*
* irc.c: IRC-Befehle
*/ */
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: irc.c,v 1.107 2002/12/12 12:24:18 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
#include <stdio.h> #include <stdio.h>

View File

@ -2,21 +2,20 @@
* ngIRCd -- The Next Generation IRC Daemon * ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
* *
* Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen * This program is free software; you can redistribute it and/or modify
* der GNU General Public License (GPL), wie von der Free Software Foundation * it under the terms of the GNU General Public License as published by
* herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 * the Free Software Foundation; either version 2 of the License, or
* der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. * (at your option) any later version.
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * Please read the file COPYING, README and AUTHORS for more information.
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
* *
* $Id: lists.c,v 1.9 2002/10/03 21:49:59 alex Exp $ * Management of IRC lists: ban, invite, ...
*
* lists.c: Verwaltung der "IRC-Listen": Ban, Invite, ...
*/ */
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: lists.c,v 1.10 2002/12/12 12:24:18 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>

View File

@ -2,21 +2,20 @@
* ngIRCd -- The Next Generation IRC Daemon * ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
* *
* Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen * This program is free software; you can redistribute it and/or modify
* der GNU General Public License (GPL), wie von der Free Software Foundation * it under the terms of the GNU General Public License as published by
* herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 * the Free Software Foundation; either version 2 of the License, or
* der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. * (at your option) any later version.
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * Please read the file COPYING, README and AUTHORS for more information.
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
* *
* $Id: log.c,v 1.40 2002/10/09 16:53:02 alex Exp $ * Logging functions
*
* log.c: Logging-Funktionen
*/ */
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: log.c,v 1.41 2002/12/12 12:24:18 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
#include <errno.h> #include <errno.h>

View File

@ -2,21 +2,20 @@
* ngIRCd -- The Next Generation IRC Daemon * ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
* *
* Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen * This program is free software; you can redistribute it and/or modify
* der GNU General Public License (GPL), wie von der Free Software Foundation * it under the terms of the GNU General Public License as published by
* herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 * the Free Software Foundation; either version 2 of the License, or
* der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. * (at your option) any later version.
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * Please read the file COPYING, README and AUTHORS for more information.
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
* *
* $Id: match.c,v 1.1 2002/06/26 15:42:58 alex Exp $ * Wildcard pattern matching
*
* match.c: Wildcard Pattern Matching
*/ */
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: match.c,v 1.2 2002/12/12 12:24:18 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
#include <string.h> #include <string.h>

View File

@ -2,21 +2,20 @@
* ngIRCd -- The Next Generation IRC Daemon * ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
* *
* Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen * This program is free software; you can redistribute it and/or modify
* der GNU General Public License (GPL), wie von der Free Software Foundation * it under the terms of the GNU General Public License as published by
* herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 * the Free Software Foundation; either version 2 of the License, or
* der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. * (at your option) any later version.
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * Please read the file COPYING, README and AUTHORS for more information.
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
* *
* $Id: parse.c,v 1.50 2002/12/06 17:02:39 alex Exp $ * IRC command parser and validator
*
* parse.c: Parsen der Client-Anfragen
*/ */
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: parse.c,v 1.51 2002/12/12 12:24:18 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -2,21 +2,20 @@
* ngIRCd -- The Next Generation IRC Daemon * ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
* *
* Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen * This program is free software; you can redistribute it and/or modify
* der GNU General Public License (GPL), wie von der Free Software Foundation * it under the terms of the GNU General Public License as published by
* herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 * the Free Software Foundation; either version 2 of the License, or
* der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. * (at your option) any later version.
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * Please read the file COPYING, README and AUTHORS for more information.
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
* *
* $Id: resolve.c,v 1.3 2002/06/09 13:19:08 alex Exp $ * Asynchronous resolver
*
* resolve.c: asyncroner Resolver
*/ */
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: resolve.c,v 1.4 2002/12/12 12:24:18 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
#include <errno.h> #include <errno.h>

View File

@ -2,21 +2,20 @@
* ngIRCd -- The Next Generation IRC Daemon * ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
* *
* Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen * This program is free software; you can redistribute it and/or modify
* der GNU General Public License (GPL), wie von der Free Software Foundation * it under the terms of the GNU General Public License as published by
* herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 * the Free Software Foundation; either version 2 of the License, or
* der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. * (at your option) any later version.
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * Please read the file COPYING, README and AUTHORS for more information.
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
* *
* $Id: tool.c,v 1.9 2002/05/27 13:09:27 alex Exp $ * Tool functions
*
* tool.c: Hilfsfunktionen, ggf. Platformabhaengig
*/ */
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: tool.c,v 1.10 2002/12/12 12:24:18 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
#include <ctype.h> #include <ctype.h>