···2626 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2727 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2828 * POSSIBILITY OF SUCH DAMAGE.
2929- *
3030- * $Id: bandb.c 26094 2008-09-19 15:33:46Z androsyn $
3129 */
3230#include "setup.h"
3331#include <ratbox_lib.h>
···55 * Should you choose to use and/or modify this source code, please
66 * do so under the terms of the GNU General Public License under which
77 * this library is distributed.
88- *
99- * $Id: rsdb_snprintf.c 26094 2008-09-19 15:33:46Z androsyn $
108 */
119#include "stdinc.h"
1210#include "rsdb.h"
-2
bandb/rsdb_sqlite3.c
···2727 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2828 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2929 * POSSIBILITY OF SUCH DAMAGE.
3030- *
3131- * $Id: rsdb_sqlite3.c 26182 2008-11-11 02:52:41Z androsyn $
3230 */
3331#include "stdinc.h"
3432#include "rsdb.h"
-54
bandb/sqlite3.c
···4141*************************************************************************
4242** Internal interface definitions for SQLite.
4343**
4444-** @(#) $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
4544*/
4645#ifndef _SQLITEINT_H_
4746#define _SQLITEINT_H_
···7069**
7170** This file defines various limits of what SQLite can process.
7271**
7373-** @(#) $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
7472*/
75737674/*
···436434** the version number) and changes its name to "sqlite3.h" as
437435** part of the build process.
438436**
439439-** @(#) $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
440437*/
441438#ifndef _SQLITE3_H_
442439#define _SQLITE3_H_
···60446041** This is the header file for the generic hash-table implemenation
60456042** used in SQLite.
60466043**
60476047-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
60486044*/
60496045#ifndef _SQLITE_HASH_H_
60506046#define _SQLITE_HASH_H_
···65666562** subsystem. See comments in the source code for a detailed description
65676563** of what each interface routine does.
65686564**
65696569-** @(#) $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
65706565*/
65716566#ifndef _BTREE_H_
65726567#define _BTREE_H_
···67786773** or VDBE. The VDBE implements an abstract machine that runs a
67796774** simple program to access and modify the underlying database.
67806775**
67816781-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
67826776*/
67836777#ifndef _SQLITE_VDBE_H_
67846778#define _SQLITE_VDBE_H_
···71647158** subsystem. The page cache subsystem reads and writes a file a page
71657159** at a time and provides a journal for rollback.
71667160**
71677167-** @(#) $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
71687161*/
7169716271707163#ifndef _PAGER_H_
···75877580** Source files should #include the sqliteInt.h file and let that file
75887581** include this one indirectly.
75897582**
75907590-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
75917583*/
7592758475937585···95059497** sqlite3RegisterDateTimeFunctions() found at the bottom of the file.
95069498** All other code has file scope.
95079499**
95089508-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
95099500**
95109501** SQLite processes all times and dates as Julian Day numbers. The
95119502** dates and times are stored as the number of days since noon
···1127611267** This file contains the C functions that implement a memory
1127711268** allocation subsystem for use by SQLite.
1127811269**
1127911279-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
1128011270*/
11281112711128211272/*
···1155111541** This file contains the C functions that implement a memory
1155211542** allocation subsystem for use by SQLite.
1155311543**
1155411554-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
1155511544*/
11556115451155711546/*
···1212112110** This version of the memory allocation subsystem is used if
1212212111** and only if SQLITE_MEMORY_SIZE is defined.
1212312112**
1212412124-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
1212512113*/
12126121141212712115/*
···1289112879** This version of the memory allocation subsystem is used if
1289212880** and only if SQLITE_POW2_MEMORY_SIZE is defined.
1289312881**
1289412894-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
1289512882*/
12896128831289712884/*
···1348513472** implementation is suitable for testing.
1348613473** debugging purposes
1348713474**
1348813488-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
1348913475*/
13490134761349113477#ifdef SQLITE_MUTEX_NOOP_DEBUG
···1362413610*************************************************************************
1362513611** This file contains the C functions that implement mutexes for OS/2
1362613612**
1362713627-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
1362813613*/
13629136141363013615/*
···1391513900*************************************************************************
1391613901** This file contains the C functions that implement mutexes for pthreads
1391713902**
1391813918-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
1391913903*/
13920139041392113905/*
···1425714241*************************************************************************
1425814242** This file contains the C functions that implement mutexes for win32
1425914243**
1426014260-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
1426114244*/
14262142451426314246/*
···1450914492** Memory allocation functions used throughout sqlite.
1451014493**
1451114494**
1451214512-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
1451314495*/
14514144961451514497/*
···1595615938** Random numbers are used by some of the database backends in order
1595715939** to generate random integer keys for tables or random filenames.
1595815940**
1595915959-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
1596015941*/
15961159421596215943···1609416075** This file contains routines used to translate between UTF-8,
1609516076** UTF-16, UTF-16BE, and UTF-16LE.
1609616077**
1609716097-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
1609816078**
1609916079** Notes on UTF-8:
1610016080**
···1714817128** This file contains functions for allocating memory, comparing
1714917129** strings, and stuff like that.
1715017130**
1715117151-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
1715217131*/
17153171321715417133···1829418273** This is the implementation of generic hash-tables
1829518274** used in SQLite.
1829618275**
1829718297-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
1829818276*/
18299182771830018278/* Turn bulk memory into a hash table object by initializing the
···2548425462** start of a transaction, and is thus usually less than a few thousand,
2548525463** but can be as large as 2 billion for a really big database.
2548625464**
2548725487-** @(#) $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
2548825465*/
25489254662549025467#define BITVEC_SZ 512
···2585525832** file simultaneously, or one process from reading the database while
2585625833** another is writing.
2585725834**
2585825858-** @(#) $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
2585925835*/
2586025836#ifndef SQLITE_OMIT_DISKIO
2586125837···3189131867**
3189231868*************************************************************************
3189331869**
3189431894-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
3189531870**
3189631871** This file contains code used to implement mutexes on Btree objects.
3189731872** This code really belongs in btree.c. But btree.c is getting too
···3191131886** May you share freely, never taking more than you give.
3191231887**
3191331888*************************************************************************
3191431914-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
3191531889**
3191631890** This file implements a external (disk-based) database using BTrees.
3191731891** For a detailed discussion of BTrees, refer to
···3291432888** May you share freely, never taking more than you give.
3291532889**
3291632890*************************************************************************
3291732917-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
3291832891**
3291932892** This file implements a external (disk-based) database using BTrees.
3292032893** See the header comment on "btreeInt.h" for additional information.
···4259142564** to version 2.8.7, all this code was combined into the vdbe.c source file.
4259242565** But that file was getting too big so this subroutines were split out.
4259342566**
4259442594-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
4259542567*/
42596425684259742569···4700746979** in this file for details. If in doubt, do not deviate from existing
4700846980** commenting and indentation practices when changing or adding code.
4700946981**
4701047010-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
4701146982*/
47012469834701346984/*
···5263852609**
5263952610** This file contains code used to implement incremental BLOB I/O.
5264052611**
5264152641-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
5264252612*/
52643526135264452614···5302252992**
5302352993*************************************************************************
5302452994**
5302553025-** @(#) $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
5302652995*/
53027529965302852997#ifdef SQLITE_ENABLE_ATOMIC_WRITE
···5331053279** This file contains routines used for analyzing expressions and
5331153280** for generating VDBE code that evaluates expressions in SQLite.
5331253281**
5331353313-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
5331453282*/
53315532835331653284/*
···5740457372** This file contains C code routines that used to generate VDBE code
5740557373** that implements the ALTER TABLE command.
5740657374**
5740757407-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
5740857375*/
57409573765741057377/*
···5809958066*************************************************************************
5810058067** This file contains code associated with the ANALYZE command.
5810158068**
5810258102-** @(#) $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
5810358069*/
5810458070#ifndef SQLITE_OMIT_ANALYZE
5810558071···5857658542*************************************************************************
5857758543** This file contains code used to implement the ATTACH and DETACH commands.
5857858544**
5857958579-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
5858058545*/
58581585465858258547#ifndef SQLITE_OMIT_ATTACH
···5918459149** systems that do not need this facility may omit it by recompiling
5918559150** the library with -DSQLITE_OMIT_AUTHORIZATION=1
5918659151**
5918759187-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
5918859152*/
59189591535919059154/*
···5945559419** COMMIT
5945659420** ROLLBACK
5945759421**
5945859458-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
5945959422*/
59460594235946159424/*
···6349363456** This file contains functions used to access the internal hash tables
6349463457** of user defined functions and collation sequences.
6349563458**
6349663496-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
6349763459*/
63498634606349963461···6391263874** This file contains C code routines that are called by the parser
6391363875** in order to generate code for DELETE FROM statements.
6391463876**
6391563915-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
6391663877*/
63917638786391863879/*
···6452364484** sqliteRegisterBuildinFunctions() found at the bottom of the file.
6452464485** All other code has file scope.
6452564486**
6452664526-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
6452764487*/
64528644886452964489···6621166171** This file contains C code routines that are called by the parser
6621266172** to handle INSERT statements in SQLite.
6621366173**
6621466214-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
6621566174*/
66216661756621766176/*
···6813668095** other files are for internal use by SQLite and should not be
6813768096** accessed by users of the library.
6813868097**
6813968139-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
6814068098*/
68141680996814268100···6833168289** as extensions by SQLite should #include this file instead of
6833268290** sqlite3.h.
6833368291**
6833468334-** @(#) $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
6833568292*/
6833668293#ifndef _SQLITE3EXT_H_
6833768294#define _SQLITE3EXT_H_
···6928269239*************************************************************************
6928369240** This file contains code used to implement the PRAGMA command.
6928469241**
6928569285-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
6928669242*/
69287692436928869244/* Ignore this whole file if pragmas are disabled
···7082670782** interface, and routines that contribute to loading the database schema
7082770783** from disk.
7082870784**
7082970829-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
7083070785*/
70831707867083270787/*
···7175571710** This file contains C code routines that are called by the parser
7175671711** to handle SELECT statements in SQLite.
7175771712**
7175871758-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
7175971713*/
71760717147176171715···7730577259** This file contains C code routines that are called by the parser
7730677260** to handle UPDATE statements.
7730777261**
7730877308-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
7730977262*/
77310772637731177264#ifndef SQLITE_OMIT_VIRTUALTABLE
···7808278035** Most of the code in this file may be omitted by defining the
7808378036** SQLITE_OMIT_VACUUM macro.
7808478037**
7808578085-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
7808678038*/
78087780397808878040#if !defined(SQLITE_OMIT_VACUUM) && !defined(SQLITE_OMIT_ATTACH)
···7838278334*************************************************************************
7838378335** This file contains code used to help implement virtual tables.
7838478336**
7838578385-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
7838678337*/
7838778338#ifndef SQLITE_OMIT_VIRTUALTABLE
7838878339···7933879289** so is applicable. Because this module is responsible for selecting
7933979290** indices, you might also think of this module as the "query optimizer".
7934079291**
7934179341-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
7934279292*/
79343792937934479294/*
···8671886668** individual tokens and sends those tokens one-by-one over to the
8671986669** parser for analysis.
8672086670**
8672186721-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
8672286671*/
86723866728672486673/*
···8748787436** separating it out, the code will be automatically omitted from
8748887437** static links that do not use it.
8748987438**
8749087490-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
8749187439*/
8749287440#ifndef SQLITE_OMIT_COMPLETE
8749387441···8783187779** other files are for internal use by SQLite and should not be
8783287780** accessed by users of the library.
8783387781**
8783487834-** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $
8783587782*/
8783687783#ifdef SQLITE_ENABLE_FTS3
8783787784/************** Include fts3.h in the middle of main.c ***********************/
···9216692113 * occurs in the query string, the NOT is ignored:
9216792114 *
9216892115 * [one OR -two] ==> one OR two
9216992169- *
9217092116 */
9217192117typedef struct Query
9217292118{
-1
bandb/sqlite3.h
···3030** the version number) and changes its name to "sqlite3.h" as
3131** part of the build process.
3232**
3333-** @(#) $Id: sqlite3.h 25424 2008-05-20 23:25:54Z androsyn $
3433*/
3534#ifndef _SQLITE3_H_
3635#define _SQLITE3_H_
-2
extensions/README
···11-$Id: README 1622 2006-06-04 03:01:05Z beu $
22-31This directory contains extensions (modules) to charybdis ircd that
42have been contributed by other people, or written by our development
53team. Unsupported extensions live under unsupported/.
-2
extensions/createauthonly.c
···44 * running private chat systems, or if a network gets droneflood
55 * problems. It will return ERR_NEEDREGGEDNICK on failure.
66 * -- nenolod
77- *
88- * $Id: createauthonly.c 833 2006-02-15 00:27:59Z jilles $
97 */
108119#include "stdinc.h"
-2
extensions/createoperonly.c
···44 * systems, or if a network gets droneflood problems. It will
55 * return ERR_NEEDREGGEDNICK on failure.
66 * -- nenolod
77- *
88- * $Id: createoperonly.c 3476 2007-05-24 04:28:36Z nenolod $
97 */
108119#include "stdinc.h"
-2
extensions/example_module.c
···1515 * You should have received a copy of the GNU General Public License
1616 * along with this program; if not, write to the Free Software
1717 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
1818- *
1919- * $Id: example_module.c 3161 2007-01-25 07:23:01Z nenolod $
2018 */
21192220/* List of ircd includes from ../include/ */
···11/*
22 * Server name extban type: bans all users using a certain server
33 * -- jilles
44- *
55- * $Id: extb_server.c 1299 2006-05-11 15:43:03Z jilles $
64 */
7586#include "stdinc.h"
-2
extensions/hurt.c
···33 *
44 * Copyright (C) 2006 charybdis development team
55 * All rights reserved
66- *
77- * $Id: hurt.c 3161 2007-01-25 07:23:01Z nenolod $
86 */
97#include "stdinc.h"
108#include "modules.h"
···22 * Copyright (C) infinity-infinity God <God@Heaven>
33 *
44 * Bob was here
55- * $Id: m_42.c 3161 2007-01-25 07:23:01Z nenolod $
65 */
7687#include "stdinc.h"
-2
extensions/m_adminwall.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_wallops.c 20702 2005-08-31 20:59:02Z leeh $
2523 */
26242725#include "stdinc.h"
···1616 * You should have received a copy of the GNU General Public License
1717 * along with this program; if not, write to the Free Software
1818 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
1919- *
2020- * $Id: m_findforwards.c 986 2006-03-08 00:10:46Z jilles $
2119 */
2220#include "stdinc.h"
2321#include "channel.h"
-2
extensions/m_identify.c
···2727 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2828 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2929 * POSSIBILITY OF SUCH DAMAGE.
3030- *
3131- * $Id: m_identify.c 2729 2006-11-09 23:52:06Z jilles $
3230 */
33313432#include "stdinc.h"
-2
extensions/m_ojoin.c
···1515 * You should have received a copy of the GNU General Public License
1616 * along with this program; if not, write to the Free Software
1717 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
1818- *
1919- * $Id: m_ojoin.c 3554 2007-08-10 22:31:14Z jilles $
2018 */
21192220#include "stdinc.h"
-2
extensions/m_okick.c
···1919 * along with this program; if not, write to the Free Software
2020 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2121 * USA
2222- *
2323- * $Id: m_okick.c 3554 2007-08-10 22:31:14Z jilles $
2422 */
25232624#include "stdinc.h"
-2
extensions/m_omode.c
···2121 * along with this program; if not, write to the Free Software
2222 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2323 * USA
2424- *
2525- * $Id: m_omode.c 3121 2007-01-02 13:23:04Z jilles $
2624 */
27252826#include "stdinc.h"
-2
extensions/m_opme.c
···1515 * You should have received a copy of the GNU General Public License
1616 * along with this program; if not, write to the Free Software
1717 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
1818- *
1919- * $Id: m_opme.c 3554 2007-08-10 22:31:14Z jilles $
2018 */
2119#include "stdinc.h"
2220#include "channel.h"
-2
extensions/m_remove.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_kick.c 3317 2007-03-28 23:17:06Z jilles $
2523 */
26242725#include "stdinc.h"
-2
extensions/m_webirc.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_webirc.c 3458 2007-05-18 19:51:22Z jilles $
2523 */
2624/* Usage:
2725 * auth {
···44 * Consequently, it is not possible to use these notices to keep track
55 * of all clients.
66 * -- jilles
77- *
88- * $Id: sno_farconnect.c 1869 2006-08-27 14:24:25Z jilles $
97 */
108119#include "stdinc.h"
-2
extensions/sno_globalkline.c
···55 * and kline_reason is enabled and the same everywhere.
66 * Yes, this is a hack, but it is simple and avoids sending
77 * more data across servers -- jilles
88- *
99- * $Id: sno_globalkline.c 613 2006-01-29 03:03:02Z nenolod $
108 */
1191210#include "stdinc.h"
···44 *
55 * If #define OPERONLY is removed, then any user can use this snomask
66 * (you need to put ~servnotice in oper_only_umodes for this to work).
77- *
88- * $Id: sno_whois.c 3498 2007-05-30 10:22:25Z jilles $
97 */
108119#include "stdinc.h"
-2
extensions/spy_admin_notice.c
···1818 * along with this program; if not, write to the Free Software
1919 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2020 * USA
2121- *
2222- * $Id: spy_admin_notice.c 498 2006-01-15 16:40:33Z jilles $
2321 */
2422#include "stdinc.h"
2523#include "modules.h"
-2
extensions/spy_info_notice.c
···1818 * along with this program; if not, write to the Free Software
1919 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2020 * USA
2121- *
2222- * $Id: spy_info_notice.c 498 2006-01-15 16:40:33Z jilles $
2321 */
2422#include "stdinc.h"
2523#include "modules.h"
-2
extensions/spy_links_notice.c
···1818 * along with this program; if not, write to the Free Software
1919 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2020 * USA
2121- *
2222- * $Id: spy_links_notice.c 498 2006-01-15 16:40:33Z jilles $
2321 */
2422#include "stdinc.h"
2523#include "modules.h"
-2
extensions/spy_motd_notice.c
···1818 * along with this program; if not, write to the Free Software
1919 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2020 * USA
2121- *
2222- * $Id: spy_motd_notice.c 498 2006-01-15 16:40:33Z jilles $
2321 */
2422#include "stdinc.h"
2523#include "modules.h"
-2
extensions/spy_stats_notice.c
···1818 * along with this program; if not, write to the Free Software
1919 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2020 * USA
2121- *
2222- * $Id: spy_stats_notice.c 498 2006-01-15 16:40:33Z jilles $
2321 */
2422#include "stdinc.h"
2523#include "modules.h"
-2
extensions/spy_stats_p_notice.c
···1818 * along with this program; if not, write to the Free Software
1919 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2020 * USA
2121- *
2222- * $Id: spy_stats_p_notice.c 498 2006-01-15 16:40:33Z jilles $
2321 */
2422#include "stdinc.h"
2523#include "modules.h"
-2
extensions/spy_trace_notice.c
···1818 * along with this program; if not, write to the Free Software
1919 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2020 * USA
2121- *
2222- * $Id: spy_trace_notice.c 498 2006-01-15 16:40:33Z jilles $
2321 */
2422#include "stdinc.h"
2523#include "modules.h"
-1
include/blacklist.h
···1818 * along with this program; if not, write to the Free Software
1919 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2020 * USA
2121- *
2221 */
23222423#ifndef _BLACKLIST_H_
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: channel.h 3580 2007-11-07 23:45:14Z jilles $
2523 */
26242725#ifndef INCLUDED_channel_h
-2
include/chmode.h
···2121 * along with this program; if not, write to the Free Software
2222 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2323 * USA
2424- *
2525- * $Id$
2624 */
27252826#ifndef INCLUDED_chmode_h
-2
include/class.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: class.h 6 2005-09-10 01:02:21Z nenolod $
2523 */
26242725#ifndef INCLUDED_class_h
-2
include/client.h
···2121 * along with this program; if not, write to the Free Software
2222 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2323 * USA
2424- *
2525- * $Id: client.h 3446 2007-05-14 22:21:16Z jilles $
2624 */
27252826#ifndef INCLUDED_client_h
-2
include/common.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: common.h 6 2005-09-10 01:02:21Z nenolod $
2523 */
26242725#ifndef INCLUDED_common_h
-2
include/config.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: config.h 3354 2007-04-03 09:21:31Z nenolod $
2523 */
26242725#ifndef INCLUDED_config_h
-2
include/defaults.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: defaults.h 3354 2007-04-03 09:21:31Z nenolod $
2523 */
26242725#ifndef INCLUDED_defaults_h
-2
include/hash.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: hash.h 3177 2007-02-01 00:19:14Z jilles $
2523 */
26242725#ifndef INCLUDED_hash_h
···2121 * along with this program; if not, write to the Free Software
2222 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2323 * USA
2424- *
2525- * $Id: hostmask.h 2757 2006-11-10 22:58:15Z jilles $
2624 */
27252826#ifndef INCLUDE_hostmask_h
-2
include/ipv4_from_ipv6.h
···2929 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
3030 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3131 * POSSIBILITY OF SUCH DAMAGE.
3232- *
3333- * $Id$
3432 */
35333634#ifndef _IPV4_FROM_IPV6_H_
-2
include/ircd.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: ircd.h 1851 2006-08-24 17:16:53Z jilles $
2523 */
26242725#ifndef INCLUDED_ircd_h
-3
include/ircd_defs.h
···2121 * along with this program; if not, write to the Free Software
2222 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2323 * USA
2424- *
2525- * $Id: ircd_defs.h 3512 2007-06-06 16:20:40Z nenolod $
2624 */
27252826/*
2927 * NOTE: NICKLEN and TOPICLEN do not live here anymore. Set it with configure
3028 * Otherwise there are no user servicable part here.
3131- *
3229 */
33303431/* ircd_defs.h - Global size definitions for record entries used
-2
include/ircd_getopt.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: ircd_getopt.h 6 2005-09-10 01:02:21Z nenolod $
2523 */
26242725#ifndef __GETOPT_H_INCLUDED__
-2
include/ircd_linker.h
···2929 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
3030 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3131 * POSSIBILITY OF SUCH DAMAGE.
3232- *
3333- * $Id: ircd_linker.h 863 2006-02-16 06:51:59Z nenolod $
3432 */
35333634#ifndef _CHARYBDIS_IRCD_LINKER_H
-2
include/ircd_signal.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: ircd_signal.h 6 2005-09-10 01:02:21Z nenolod $
2523 */
26242725#ifndef INCLUDED_ircd_signal_h
-2
include/listener.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: listener.h 6 2005-09-10 01:02:21Z nenolod $
2523 */
26242725#ifndef INCLUDED_listener_h
-2
include/logger.h
···2727 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2828 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2929 * POSSIBILITY OF SUCH DAMAGE.
3030- *
3131- * $Id: s_log.h 1481 2006-05-27 17:24:05Z nenolod $
3230 */
33313432#ifndef INCLUDED_s_log_h
-2
include/m_info.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_info.h 3356 2007-04-03 09:31:11Z nenolod $
2523 */
26242725#ifndef INCLUDED_m_info_h
-2
include/match.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: irc_string.h 3538 2007-07-26 14:21:57Z jilles $
2523 */
26242725#ifndef INCLUDED_match_h
-2
include/messages.h
···1515 * You should have received a copy of the GNU General Public License
1616 * along with this program; if not, write to the Free Software
1717 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
1818- *
1919- * $Id: messages.tab 3548 2007-08-09 06:40:52Z nenolod $
2018 */
21192220#ifndef INCLUDED_messages_h
-2
include/modules.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: modules.h 6 2005-09-10 01:02:21Z nenolod $
2523 */
26242725#ifndef INCLUDED_modules_h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: msg.h 6 2005-09-10 01:02:21Z nenolod $
2523 */
26242725#ifndef INCLUDED_msg_h
-1
include/newconf.h
···11/* This code is in the public domain.
22 * $Nightmare: nightmare/include/config.h,v 1.32.2.2.2.2 2002/07/02 03:41:28 ejb Exp $
33- * $Id: newconf.h 1735 2006-07-19 02:35:40Z nenolod $
43 */
5465#ifndef _NEWCONF_H_INCLUDED
-2
include/numeric.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: numeric.h 1793 2006-08-04 19:56:03Z jilles $
2523 */
26242725#ifndef INCLUDED_numeric_h
-2
include/packet.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: packet.h 813 2006-02-14 20:52:15Z nenolod $
2523 */
26242725#ifndef INCLUDED_packet_h
-2
include/parse.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: parse.h 944 2006-03-06 03:41:31Z nenolod $
2523 */
26242725#ifndef INCLUDED_parse_h_h
-2
include/patchlevel.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: patchlevel.h 34 2005-09-10 02:53:04Z nenolod $
2523 */
26242725#include "setup.h"
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: restart.h 6 2005-09-10 01:02:21Z nenolod $
2523 */
26242725#ifndef INCLUDED_restart_h
-2
include/s_auth.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: s_auth.h 6 2005-09-10 01:02:21Z nenolod $
2523 */
26242725#ifndef INCLUDED_s_auth_h
-2
include/s_conf.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: s_conf.h 3550 2007-08-09 06:47:26Z nenolod $
2523 */
26242725#ifndef INCLUDED_s_conf_h
-2
include/s_newconf.h
···2828 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2929 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3030 * POSSIBILITY OF SUCH DAMAGE.
3131- *
3232- * $Id: s_newconf.h 1747 2006-07-25 21:22:45Z jilles $
3331 */
34323533#ifndef INCLUDED_s_newconf_h
-2
include/s_serv.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: s_serv.h 1863 2006-08-27 13:40:37Z jilles $
2523 */
26242725#ifndef INCLUDED_serv_h
-2
include/s_stats.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: s_stats.h 1409 2006-05-21 14:46:17Z jilles $
2523 */
26242725#ifndef INCLUDED_s_stats_h
-2
include/s_user.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: s_user.h 3201 2007-02-04 01:59:38Z jilles $
2523 */
26242725#ifndef INCLUDED_s_user_h
-2
include/scache.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: scache.h 6 2005-09-10 01:02:21Z nenolod $
2523 */
26242725#ifndef INCLUDED_scache_h
-2
include/send.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: send.h 3520 2007-06-30 22:15:35Z jilles $
2523 */
26242725#ifndef INCLUDED_send_h
-2
include/snomask.h
···2929 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
3030 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3131 * POSSIBILITY OF SUCH DAMAGE.
3232- *
3333- * $Id$
3432 */
35333634#ifndef SNOMASK_H
-2
include/sslproc.h
···1717 * along with this program; if not, write to the Free Software
1818 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
1919 * USA
2020- *
2121- * $Id: sslproc.h 25179 2008-03-30 16:34:57Z androsyn $
2220 */
23212422#ifndef INCLUDED_sslproc_h
···2929 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
3030 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3131 * POSSIBILITY OF SUCH DAMAGE.
3232- *
3333- * $Id$
3432 */
35333634#include "stdinc.h"
-2
include/supported.h
···2828 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2929 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3030 * POSSIBILITY OF SUCH DAMAGE.
3131- *
3232- * $Id: supported.h 1887 2006-08-29 13:42:56Z jilles $
3331 */
34323533#ifndef INCLUDED_supported_h
-2
include/whowas.h
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: whowas.h 1717 2006-07-04 14:41:11Z jilles $
2523 */
2624#ifndef INCLUDED_whowas_h
2725#define INCLUDED_whowas_h
-2
ircd/bandbi.c
···2727 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2828 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2929 * POSSIBILITY OF SUCH DAMAGE.
3030- *
3131- * $Id$
3230 */
3331#include "stdinc.h"
3432#include "ratbox_lib.h"
-1
ircd/blacklist.c
···2929 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
3030 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3131 * POSSIBILITY OF SUCH DAMAGE.
3232- *
3332 */
34333534#include "stdinc.h"
-2
ircd/cache.c
···2828 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2929 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3030 * POSSIBILITY OF SUCH DAMAGE.
3131- *
3232- * $Id: cache.c 25119 2008-03-13 16:57:05Z androsyn $
3331 */
34323533#include "stdinc.h"
-2
ircd/channel.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: channel.c 3580 2007-11-07 23:45:14Z jilles $
2523 */
26242725#include "stdinc.h"
-2
ircd/chmode.c
···2121 * along with this program; if not, write to the Free Software
2222 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2323 * USA
2424- *
2525- * $Id: chmode.c 3580 2007-11-07 23:45:14Z jilles $
2624 */
27252826#include "stdinc.h"
-2
ircd/class.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: class.c 254 2005-09-21 23:35:12Z nenolod $
2523 */
26242725#include "stdinc.h"
+3-6
ircd/client.c
···2121 * along with this program; if not, write to the Free Software
2222 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2323 * USA
2424- *
2525- * $Id: client.c 3514 2007-06-06 16:25:21Z nenolod $
2624 */
2725#include "stdinc.h"
2826#include "config.h"
···10731071** already been sent. we make sure to exit a server's dependent clients
10741072** and servers before the server itself; exit_one_client takes care of
10751073** actually removing things off llists. tweaked from +CSr31 -orabidoo
10761076-*/
10741074+ */
10771075/*
10781076 * added sanity test code.... source_p->serv might be NULL...
10791077 */
···11261124** Remove *everything* that depends on source_p, from all lists, and sending
11271125** all necessary SQUITs. source_p itself is still on the lists,
11281126** and its SQUITs have been sent except for the upstream one -orabidoo
11291129-*/
11271127+ */
11301128static void
11311129remove_dependents(struct Client *client_p,
11321130 struct Client *source_p,
···1193119111941192/*
11951193 * dead_link - Adds client to a list of clients that need an exit_client()
11961196- *
11971194 */
11981195void
11991196dead_link(struct Client *client_p, int sendqex)
···15441541**
15451542** CLIENT_EXITED if (client_p == source_p)
15461543** 0 if (client_p != source_p)
15471547-*/
15441544+ */
15481545int
15491546exit_client(struct Client *client_p, /* The local client originating the
15501547 * exit or NULL, if this exit is
-2
ircd/extban.c
···1818 * along with this program; if not, write to the Free Software
1919 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2020 * USA
2121- *
2222- * $Id: extban.c 1389 2006-05-20 19:19:00Z nenolod $
2321 */
24222523#include "stdinc.h"
-2
ircd/getopt.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: getopt.c 6 2005-09-10 01:02:21Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
ircd/hash.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: hash.c 3177 2007-02-01 00:19:14Z jilles $
2523 */
26242725#include "stdinc.h"
-2
ircd/hook.c
···3333 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
3434 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3535 * POSSIBILITY OF SUCH DAMAGE.
3636- *
3737- * $Id: hook.c 712 2006-02-06 04:42:14Z gxti $
3836 */
3937#include "stdinc.h"
4038#include "hook.h"
-2
ircd/hostmask.c
···2121 * along with this program; if not, write to the Free Software
2222 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2323 * USA
2424- *
2525- * $Id: hostmask.c 2757 2006-11-10 22:58:15Z jilles $
2624 */
27252826#include "stdinc.h"
-1
ircd/ipv4_from_ipv6.c
···2929 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
3030 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3131 * POSSIBILITY OF SUCH DAMAGE.
3232- *
3332 */
34333534#include "stdinc.h"
-2
ircd/ircd.c
···2121 * along with this program; if not, write to the Free Software
2222 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2323 * USA
2424- *
2525- * $Id$
2624 */
27252826#include "ratbox_lib.h"
-2
ircd/ircd_lexer.c
···513513 * along with this program; if not, write to the Free Software
514514 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
515515 * USA
516516- *
517517- * $Id: ircd_lexer.l 3540 2007-07-30 17:26:00Z jilles $
518516 */
519517#line 26 "ircd_lexer.l"
520518#include <sys/types.h>
-1
ircd/ircd_lexer.l
···1515 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
1616 * USA
1717 *
1818- * $Id: ircd_lexer.l 3540 2007-07-30 17:26:00Z jilles $
1918 */
20192120%option case-insensitive
-1
ircd/ircd_parser.y
···11/* This code is in the public domain.
22 * $Nightmare: nightmare/src/main/parser.y,v 1.2.2.1.2.1 2002/07/02 03:42:10 ejb Exp $
33- * $Id: ircd_parser.y 871 2006-02-18 21:56:00Z nenolod $
43 */
5465%{
-2
ircd/ircd_signal.c
···1616 * You should have received a copy of the GNU General Public License
1717 * along with this program; if not, write to the Free Software
1818 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
1919- *
2020- * $Id: ircd_signal.c 6 2005-09-10 01:02:21Z nenolod $
2119 */
22202321#include "stdinc.h"
-2
ircd/listener.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: listener.c 3460 2007-05-18 20:31:33Z jilles $
2523 */
26242725#include "stdinc.h"
-2
ircd/logger.c
···3030 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
3131 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3232 * POSSIBILITY OF SUCH DAMAGE.
3333- *
3434- * $Id: s_log.c 3209 2007-02-11 16:54:43Z jilles $
3533 */
36343735#include "stdinc.h"
-2
ircd/match.c
···1616 * along with this program; if not, write to the Free Software
1717 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
1818 *
1919- * $Id: match.c 3532 2007-07-14 13:32:18Z jilles $
2020- *
2119 */
2220#include "stdinc.h"
2321#include "config.h"
-2
ircd/modules.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: modules.c 3161 2007-01-25 07:23:01Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
ircd/monitor.c
···2828 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2929 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3030 * POSSIBILITY OF SUCH DAMAGE.
3131- *
3232- * $Id: monitor.c 3520 2007-06-30 22:15:35Z jilles $
3331 */
3432#include "stdinc.h"
3533#include "client.h"
-1
ircd/newconf.c
···11/* This code is in the public domain.
22- * $Id: newconf.c 3550 2007-08-09 06:47:26Z nenolod $
32 */
4354#include "stdinc.h"
-2
ircd/packet.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: packet.c 3446 2007-05-14 22:21:16Z jilles $
2523 */
2624#include "stdinc.h"
2725#include "s_conf.h"
-3
ircd/parse.c
···2121 * along with this program; if not, write to the Free Software
2222 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2323 * USA
2424- *
2525- * $Id: parse.c 3177 2007-02-01 00:19:14Z jilles $
2624 */
27252826#include "stdinc.h"
···288286 * output - NONE
289287 * side effects - MUST MUST be called at startup ONCE before
290288 * any other keyword hash routine is used.
291291- *
292289 */
293290void
294291clear_hash_parse()
-2
ircd/reject.c
···1919 * along with this program; if not, write to the Free Software
2020 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
2121 * USA
2222- *
2323- * $Id: reject.c 25119 2008-03-13 16:57:05Z androsyn $
2422 */
25232624#include "stdinc.h"
-2
ircd/restart.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
2222 * USA
2323- *
2424- * $Id: restart.c 24244 2007-08-22 19:04:55Z androsyn $
2523 */
26242725#include "stdinc.h"
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: s_conf.c 3550 2007-08-09 06:47:26Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
ircd/s_newconf.c
···2828 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2929 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3030 * POSSIBILITY OF SUCH DAMAGE.
3131- *
3232- * $Id: s_newconf.c 3508 2007-06-04 16:04:49Z jilles $
3331 */
34323533#include "stdinc.h"
-3
ircd/s_serv.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: s_serv.c 3550 2007-08-09 06:47:26Z nenolod $
2523 */
26242725#include "stdinc.h"
···438436 * - int flag of capabilities that this server has
439437 * output - NONE
440438 * side effects - send the CAPAB line to a server -orabidoo
441441- *
442439 */
443440void
444441send_capabilities(struct Client *client_p, unsigned int cap_can_send)
+1-3
ircd/s_user.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: s_user.c 3586 2007-11-20 11:16:43Z nenolod $
2523 */
26242725#include "stdinc.h"
···216214** would just issue "KILL foobar" to clean out dups. But,
217215** this is not fair. It should actually request another
218216** nick from local user or kill him/her...
219219-*/
217217+ */
220218221219int
222220register_local_user(struct Client *client_p, struct Client *source_p)
-2
ircd/send.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: send.c 3520 2007-06-30 22:15:35Z jilles $
2523 */
26242725#include "stdinc.h"
-2
ircd/snomask.c
···2929 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
3030 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3131 * POSSIBILITY OF SUCH DAMAGE.
3232- *
3333- * $Id$
3432 */
35333634#include "stdinc.h"
-2
ircd/sslproc.c
···1717 * along with this program; if not, write to the Free Software
1818 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
1919 * USA
2020- *
2121- * $Id$
2220 */
23212422#include <ratbox_lib.h>
-2
ircd/substitution.c
···2929 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
3030 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3131 * POSSIBILITY OF SUCH DAMAGE.
3232- *
3333- * $Id$
3432 */
35333634#include "stdinc.h"
-2
ircd/supported.c
···2727 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2828 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2929 * POSSIBILITY OF SUCH DAMAGE.
3030- *
3131- * $Id: supported.c 3568 2007-09-09 18:59:08Z jilles $
3230 */
33313432/* From the old supported.h which is
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_die.c 3295 2007-03-28 14:45:46Z jilles $
2523 */
26242725#include "stdinc.h"
-2
modules/core/m_error.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_error.c 494 2006-01-15 16:08:28Z jilles $
2523 */
26242725#include "stdinc.h"
-2
modules/core/m_join.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_join.c 3494 2007-05-27 13:07:27Z jilles $
2523 */
26242725#include "stdinc.h"
-2
modules/core/m_kick.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_kick.c 3317 2007-03-28 23:17:06Z jilles $
2523 */
26242725#include "stdinc.h"
-2
modules/core/m_kill.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_kill.c 3408 2007-04-14 20:58:56Z jilles $
2523 */
26242725#include "stdinc.h"
-3
modules/core/m_message.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_message.c 3173 2007-01-31 23:57:18Z jilles $
2523 */
26242725#include "stdinc.h"
···246244 * all the classic old bizzare oper privmsg tricks
247245 * are parsed and sent as is, if prefixed with $
248246 * to disambiguate.
249249- *
250247 */
251248252249static int
-2
modules/core/m_mode.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_mode.c 1006 2006-03-09 15:32:14Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
modules/core/m_nick.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_nick.c 3518 2007-06-22 21:59:09Z jilles $
2523 */
26242725#include "stdinc.h"
-2
modules/core/m_part.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_part.c 98 2005-09-11 03:37:47Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
modules/core/m_quit.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_quit.c 1333 2006-05-14 13:47:33Z jilles $
2523 */
26242725#include "stdinc.h"
-2
modules/core/m_server.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_server.c 3291 2007-03-28 14:30:10Z jilles $
2523 */
26242725#include "stdinc.h"
-2
modules/core/m_squit.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_squit.c 3161 2007-01-25 07:23:01Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
modules/m_accept.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_accept.c 254 2005-09-21 23:35:12Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
modules/m_admin.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_admin.c 3368 2007-04-03 10:11:06Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
modules/m_away.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_away.c 3370 2007-04-03 10:15:39Z nenolod $
2523 */
26242725#include "stdinc.h"
-3
modules/m_capab.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_capab.c 1295 2006-05-08 13:05:25Z nenolod $
2523 */
26242725#include "stdinc.h"
···5149/*
5250 * mr_capab - CAPAB message handler
5351 * parv[1] = space-separated list of capabilities
5454- *
5552 */
5653static int
5754mr_capab(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
-3
modules/m_challenge.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_challenge.c 3161 2007-01-25 07:23:01Z nenolod $
2523 */
26242725#include "stdinc.h"
···10199/*
102100 * m_challenge - generate RSA challenge for wouldbe oper
103101 * parv[1] = operator to challenge for, or +response
104104- *
105102 */
106103static int
107104m_challenge(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
-2
modules/m_close.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_close.c 254 2005-09-21 23:35:12Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
modules/m_cmessage.c
···2929 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
3030 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3131 * POSSIBILITY OF SUCH DAMAGE.
3232- *
3333- * $Id: m_cmessage.c 1543 2006-06-01 18:18:28Z jilles $
3432 */
3533#include "stdinc.h"
3634#include "client.h"
-2
modules/m_connect.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_connect.c 3161 2007-01-25 07:23:01Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
modules/m_dline.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id$
2523 */
26242725#include "stdinc.h"
-2
modules/m_encap.c
···2525 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2626 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2727 * POSSIBILITY OF SUCH DAMAGE.
2828- *
2929- * $Id: m_encap.c 254 2005-09-21 23:35:12Z nenolod $
3028 */
31293230#include "stdinc.h"
-2
modules/m_etrace.c
···2828 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2929 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3030 * POSSIBILITY OF SUCH DAMAGE.
3131- *
3232- * $Id: m_etrace.c 3161 2007-01-25 07:23:01Z nenolod $
3331 */
34323533#include "stdinc.h"
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_help.c 254 2005-09-21 23:35:12Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
modules/m_info.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_info.c 3396 2007-04-05 00:38:52Z jilles $
2523 */
26242725#include "stdinc.h"
-2
modules/m_invite.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_invite.c 3438 2007-05-06 14:46:45Z jilles $
2523 */
26242725#include "stdinc.h"
-2
modules/m_ison.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_ison.c 254 2005-09-21 23:35:12Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
modules/m_kline.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id$
2523 */
26242725#include "stdinc.h"
-2
modules/m_knock.c
···1919 * along with this program; if not, write to the Free Software
2020 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2121 * USA
2222- *
2323- * $Id: m_knock.c 3570 2007-09-09 19:19:23Z jilles $
2422 */
25232624#include "stdinc.h"
-2
modules/m_links.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_links.c 254 2005-09-21 23:35:12Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
modules/m_list.c
···2929 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
3030 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3131 * POSSIBILITY OF SUCH DAMAGE.
3232- *
3333- * $Id: m_list.c 3372 2007-04-03 10:18:07Z nenolod $
3432 */
35333634#include "stdinc.h"
-2
modules/m_locops.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_locops.c 254 2005-09-21 23:35:12Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
modules/m_lusers.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_lusers.c 254 2005-09-21 23:35:12Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
modules/m_map.c
···1818 * along with this program; if not, write to the Free Software
1919 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2020 * USA
2121- *
2222- * $Id: m_map.c 3368 2007-04-03 10:11:06Z nenolod $
2321 */
24222523#include "stdinc.h"
-2
modules/m_monitor.c
···2626 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2727 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2828 * POSSIBILITY OF SUCH DAMAGE.
2929- *
3030- * $Id: m_monitor.c 312 2005-11-07 10:47:33Z jilles $
3129 */
32303331#include "stdinc.h"
-2
modules/m_motd.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_motd.c 254 2005-09-21 23:35:12Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
modules/m_names.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_names.c 254 2005-09-21 23:35:12Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
modules/m_oper.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_oper.c 1483 2006-05-27 18:58:12Z jilles $
2523 */
26242725#include "stdinc.h"
-2
modules/m_operspy.c
···2525 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2626 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2727 * POSSIBILITY OF SUCH DAMAGE.
2828- *
2929- * $Id: m_operspy.c 254 2005-09-21 23:35:12Z nenolod $
3028 */
31293230#include "stdinc.h"
-2
modules/m_pass.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_pass.c 3550 2007-08-09 06:47:26Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
modules/m_ping.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_ping.c 254 2005-09-21 23:35:12Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
modules/m_pong.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_pong.c 3181 2007-02-01 00:49:07Z jilles $
2523 */
26242725#include "stdinc.h"
-2
modules/m_post.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_post.c 498 2006-01-15 16:40:33Z jilles $
2523 */
26242725#include "stdinc.h"
-2
modules/m_rehash.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_rehash.c 3161 2007-01-25 07:23:01Z nenolod $
2523 */
26242725#include "stdinc.h"
-3
modules/m_restart.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_restart.c 3161 2007-01-25 07:23:01Z nenolod $
2523 */
26242725#include "stdinc.h"
···54525553/*
5654 * mo_restart
5757- *
5855 */
5956static int
6057mo_restart(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
-2
modules/m_resv.c
···1919 * along with this program; if not, write to the Free Software
2020 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2121 * USA
2222- *
2323- * $Id$
2422 */
25232624#include "stdinc.h"
-2
modules/m_sasl.c
···2525 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2626 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2727 * POSSIBILITY OF SUCH DAMAGE.
2828- *
2929- * $Id: m_sasl.c 1409 2006-05-21 14:46:17Z jilles $
3028 */
31293230#include "stdinc.h"
-2
modules/m_scan.c
···2727 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2828 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2929 * POSSIBILITY OF SUCH DAMAGE.
3030- *
3131- * $Id: m_scan.c 1853 2006-08-24 18:30:52Z jilles $
3230 */
33313432#include "stdinc.h"
-2
modules/m_services.c
···2525 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2626 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2727 * POSSIBILITY OF SUCH DAMAGE.
2828- *
2929- * $Id: m_services.c 1907 2006-08-29 19:18:15Z jilles $
3028 */
31293230#include "stdinc.h"
-2
modules/m_set.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_set.c 3406 2007-04-13 19:06:53Z jilles $
2523 */
26242725/* rewritten by jdc */
-2
modules/m_signon.c
···2525 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2626 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2727 * POSSIBILITY OF SUCH DAMAGE.
2828- *
2929- * $Id: m_signon.c 1192 2006-04-21 16:21:02Z jilles $
3028 */
31293230#include "stdinc.h"
-2
modules/m_snote.c
···2727 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2828 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2929 * POSSIBILITY OF SUCH DAMAGE.
3030- *
3131- * $Id: m_snote.c 623 2006-01-29 13:47:35Z jilles $
3230 */
33313432#include "stdinc.h"
-2
modules/m_stats.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_stats.c 1608 2006-06-04 02:11:40Z jilles $
2523 */
26242725#include "stdinc.h"
-2
modules/m_svinfo.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_svinfo.c 494 2006-01-15 16:08:28Z jilles $
2523 */
2624#include "stdinc.h"
2725#include "client.h"
-2
modules/m_tb.c
···2626 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2727 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2828 * POSSIBILITY OF SUCH DAMAGE.
2929- *
3030- * $Id: m_tb.c 1349 2006-05-17 17:37:46Z jilles $
3129 */
32303331#include "stdinc.h"
-2
modules/m_testline.c
···2626 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2727 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2828 * POSSIBILITY OF SUCH DAMAGE.
2929- *
3030- * $Id: m_testline.c 3303 2007-03-28 15:22:49Z jilles $
3129 */
3230#include "stdinc.h"
3331#include "send.h"
-2
modules/m_testmask.c
···2929 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3030 * POSSIBILITY OF SUCH DAMAGE.
3131 *
3232- * $Id: m_testmask.c 3161 2007-01-25 07:23:01Z nenolod $
3333- *
3432 */
35333634/* List of ircd includes from ../include/ */
-2
modules/m_time.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_time.c 254 2005-09-21 23:35:12Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
modules/m_topic.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_topic.c 254 2005-09-21 23:35:12Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
modules/m_trace.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_trace.c 3183 2007-02-01 01:07:42Z jilles $
2523 */
26242725#include "stdinc.h"
-3
modules/m_unreject.c
···1919 * along with this program; if not, write to the Free Software
2020 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2121 * USA
2222- *
2323- * $Id: m_unreject.c 3161 2007-01-25 07:23:01Z nenolod $
2422 */
25232624#include "stdinc.h"
···44424543/*
4644 * mo_unreject
4747- *
4845 */
4946static int
5047mo_unreject(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
-2
modules/m_user.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_user.c 3416 2007-04-15 20:18:54Z jilles $
2523 */
26242725#include "stdinc.h"
-2
modules/m_userhost.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_userhost.c 254 2005-09-21 23:35:12Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
modules/m_users.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_users.c 254 2005-09-21 23:35:12Z nenolod $
2523 */
26242725#include "stdinc.h"
-2
modules/m_version.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_version.c 1887 2006-08-29 13:42:56Z jilles $
2523 */
26242725#include <stdinc.h>
-2
modules/m_wallops.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_wallops.c 1377 2006-05-20 13:48:37Z jilles $
2523 */
26242725#include "stdinc.h"
-2
modules/m_who.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_who.c 3350 2007-04-02 22:03:08Z jilles $
2523 */
2624#include "stdinc.h"
2725#include "common.h"
-2
modules/m_whois.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_whois.c 3536 2007-07-14 21:50:21Z jilles $
2523 */
26242725#include "stdinc.h"
-2
modules/m_whowas.c
···2020 * along with this program; if not, write to the Free Software
2121 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2222 * USA
2323- *
2424- * $Id: m_whowas.c 1717 2006-07-04 14:41:11Z jilles $
2523 */
26242725#include "stdinc.h"
-2
modules/m_xline.c
···2626 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2727 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2828 * POSSIBILITY OF SUCH DAMAGE.
2929- *
3030- * $Id$
3129 */
32303331#include "stdinc.h"
-2
modules/sno_routing.c
···2727 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
2828 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2929 * POSSIBILITY OF SUCH DAMAGE.
3030- *
3131- * $Id: sno_routing.c 1172 2006-04-18 13:49:18Z jilles $
3230 */
33313432#include "stdinc.h"
-1
modules/static_modules.c.SH
···11#!/bin/sh
22# static_modules.c.SH: Generates our static module list
33-# $Id: static_modules.c.SH 6 2005-09-10 01:02:21Z nenolod $
43#
54SYMS=`for x in $*; do basename $x .o|sed -es/^m_//; done`
65cat > static_modules.c <<EOF