mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 11:09:04 -04:00
Header tidyups. Apart from module to module API stuff and external deps, modules dont really need to include much but inspircd.h (and xline.h if they create new xline factories)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10622 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
e4685ccca8
commit
fa933d7bdc
@ -16,9 +16,6 @@
|
||||
|
||||
#include "inspircd.h"
|
||||
#include <mysql.h>
|
||||
#include "users.h"
|
||||
#include "channels.h"
|
||||
#include "modules.h"
|
||||
#include "m_sqlv2.h"
|
||||
|
||||
#ifdef WINDOWS
|
||||
|
@ -15,10 +15,6 @@
|
||||
#include <cstdlib>
|
||||
#include <sstream>
|
||||
#include <libpq-fe.h>
|
||||
#include "users.h"
|
||||
#include "channels.h"
|
||||
#include "modules.h"
|
||||
#include "configreader.h"
|
||||
#include "m_sqlv2.h"
|
||||
|
||||
/* $ModDesc: PostgreSQL Service Provider module for all other m_sql* modules, uses v2 of the SQL API */
|
||||
|
@ -12,9 +12,6 @@
|
||||
*/
|
||||
|
||||
#include "inspircd.h"
|
||||
#include "users.h"
|
||||
#include "channels.h"
|
||||
#include "modules.h"
|
||||
#include "m_sqlv2.h"
|
||||
#include "m_sqlutils.h"
|
||||
#include "m_hash.h"
|
||||
|
@ -13,9 +13,6 @@
|
||||
|
||||
#include "inspircd.h"
|
||||
#include <sqlite3.h>
|
||||
#include "users.h"
|
||||
#include "channels.h"
|
||||
#include "modules.h"
|
||||
#include "m_sqlv2.h"
|
||||
|
||||
/* $ModDesc: sqlite3 provider */
|
||||
|
@ -12,10 +12,6 @@
|
||||
*/
|
||||
|
||||
#include "inspircd.h"
|
||||
#include "users.h"
|
||||
#include "channels.h"
|
||||
#include "modules.h"
|
||||
#include "configreader.h"
|
||||
#include "m_sqlv2.h"
|
||||
|
||||
static Module* SQLModule;
|
||||
|
@ -12,11 +12,6 @@
|
||||
*/
|
||||
|
||||
#include "inspircd.h"
|
||||
#include "users.h"
|
||||
#include "channels.h"
|
||||
#include "modules.h"
|
||||
#include "configreader.h"
|
||||
|
||||
#include "m_sqlv2.h"
|
||||
#include "m_sqlutils.h"
|
||||
#include "m_hash.h"
|
||||
|
@ -14,10 +14,6 @@
|
||||
#include "inspircd.h"
|
||||
#include <sstream>
|
||||
#include <list>
|
||||
#include "users.h"
|
||||
#include "channels.h"
|
||||
#include "modules.h"
|
||||
#include "configreader.h"
|
||||
#include "m_sqlutils.h"
|
||||
|
||||
/* $ModDesc: Provides some utilities to SQL client modules, such as mapping queries to users and channels */
|
||||
|
@ -15,10 +15,6 @@
|
||||
/* $ModDep: transport.h */
|
||||
|
||||
#include "inspircd.h"
|
||||
#include "inspircd_config.h"
|
||||
#include "users.h"
|
||||
#include "channels.h"
|
||||
#include "modules.h"
|
||||
#include "transport.h"
|
||||
|
||||
/** Handle /FINGERPRINT
|
||||
|
@ -12,11 +12,7 @@
|
||||
*/
|
||||
|
||||
#include "inspircd.h"
|
||||
#include "users.h"
|
||||
#include "channels.h"
|
||||
#include "modules.h"
|
||||
#include "transport.h"
|
||||
#include "dns.h"
|
||||
|
||||
/* $ModDesc: Provides /sslinfo command used to test who a mask matches */
|
||||
/* $ModDep: transport.h */
|
||||
|
@ -12,10 +12,6 @@
|
||||
*/
|
||||
|
||||
#include "inspircd.h"
|
||||
#include "users.h"
|
||||
#include "channels.h"
|
||||
#include "modules.h"
|
||||
#include "configreader.h"
|
||||
#include "m_sqlv2.h"
|
||||
|
||||
class ModuleTestClient : public Module
|
||||
|
@ -13,13 +13,7 @@
|
||||
|
||||
#include "inspircd.h"
|
||||
#include <zlib.h>
|
||||
#include "users.h"
|
||||
#include "channels.h"
|
||||
#include "modules.h"
|
||||
#include "socket.h"
|
||||
#include "hashcomp.h"
|
||||
#include "transport.h"
|
||||
|
||||
#include <iostream>
|
||||
|
||||
/* $ModDesc: Provides zlib link support for servers */
|
||||
|
@ -1,12 +1,19 @@
|
||||
/* +------------------------------------+
|
||||
* | Inspire Internet Relay Chat Daemon |
|
||||
* +------------------------------------+
|
||||
*
|
||||
* InspIRCd: (C) 2002-2008 InspIRCd Development Team
|
||||
* See: http://www.inspircd.org/wiki/index.php/Credits
|
||||
*
|
||||
* This program is free but copyrighted software; see
|
||||
* the file COPYING for details.
|
||||
*
|
||||
* ---------------------------------------------------
|
||||
*/
|
||||
|
||||
#include "inspircd.h"
|
||||
#include "users.h"
|
||||
#include "channels.h"
|
||||
#include "modules.h"
|
||||
|
||||
#include <set>
|
||||
|
||||
#include <sstream>
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
/* $ModDesc: Implementation of callerid (umode +g & /accept, ala hybrid etc) */
|
||||
|
@ -12,9 +12,6 @@
|
||||
*/
|
||||
|
||||
#include "inspircd.h"
|
||||
#include "users.h"
|
||||
#include "channels.h"
|
||||
#include "modules.h"
|
||||
|
||||
/* $ModDesc: Provides support for ircu style usermode +d (deaf to channel messages and channel notices) */
|
||||
|
||||
|
@ -12,9 +12,6 @@
|
||||
*/
|
||||
|
||||
#include "inspircd.h"
|
||||
#include "users.h"
|
||||
#include "channels.h"
|
||||
#include "modules.h"
|
||||
#include "xline.h"
|
||||
#include "m_regex.h"
|
||||
|
||||
|
@ -12,9 +12,6 @@
|
||||
*/
|
||||
|
||||
#include "inspircd.h"
|
||||
#include "users.h"
|
||||
#include "channels.h"
|
||||
#include "modules.h"
|
||||
|
||||
/* $ModDesc: Provides support for RFC1413 ident lookups */
|
||||
|
||||
|
@ -12,9 +12,6 @@
|
||||
*/
|
||||
|
||||
#include "inspircd.h"
|
||||
#include "users.h"
|
||||
#include "channels.h"
|
||||
#include "modules.h"
|
||||
|
||||
/* $ModDesc: Removes flood limits from users upon opering up. */
|
||||
class ModuleOperFlood : public Module
|
||||
|
@ -12,9 +12,6 @@
|
||||
*/
|
||||
|
||||
#include "inspircd.h"
|
||||
#include "users.h"
|
||||
#include "channels.h"
|
||||
#include "modules.h"
|
||||
#include "httpd.h"
|
||||
#include "rpc.h"
|
||||
#include <exception>
|
||||
|
@ -12,9 +12,6 @@
|
||||
*/
|
||||
|
||||
#include "inspircd.h"
|
||||
#include "users.h"
|
||||
#include "channels.h"
|
||||
#include "modules.h"
|
||||
#include "rpc.h"
|
||||
|
||||
/* $ModDesc: A test of the RPC API */
|
||||
|
@ -12,12 +12,6 @@
|
||||
*/
|
||||
|
||||
#include "inspircd.h"
|
||||
#include <stdio.h>
|
||||
#include <string>
|
||||
#include "users.h"
|
||||
#include "channels.h"
|
||||
#include "modules.h"
|
||||
#include "configreader.h"
|
||||
|
||||
/* $ModDesc: Provides support for Austhex style +k / UnrealIRCD +S services mode */
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user