X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fextra%2Fm_sslinfo.cpp;h=7dc4bd6f311fab3e62b6eacdc9a3984f21763652;hb=5adff9af1b71adb9ebaaa09159821b1947f7f625;hp=a29a616581f9f18daaa44a5bd57109cc738db980;hpb=364735e18b500f0a071fab4cc5c9e7bace1835fc;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/extra/m_sslinfo.cpp b/src/modules/extra/m_sslinfo.cpp index a29a61658..7dc4bd6f3 100644 --- a/src/modules/extra/m_sslinfo.cpp +++ b/src/modules/extra/m_sslinfo.cpp @@ -2,30 +2,26 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. - * E-mail: - * - * - * - * Written by Craig Edwards, Craig McLure, and others. + * InspIRCd: (C) 2002-2007 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. * * --------------------------------------------------- */ -using namespace std; - #include #include "users.h" #include "channels.h" #include "modules.h" -#include "ssl_cert.h" +#include "transport.h" #include "wildcard.h" #include "inspircd.h" #include "dns.h" /* $ModDesc: Provides /sslinfo command used to test who a mask matches */ +/* $ModDep: transport.h */ /** Handle /SSLINFO */ @@ -91,7 +87,7 @@ class ModuleSSLInfo : public Module virtual Version GetVersion() { - return Version(1, 0, 0, 0, VF_VENDOR, API_VERSION); + return Version(1, 1, 0, 0, VF_VENDOR, API_VERSION); } };