X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fextra%2Fm_sslinfo.cpp;h=7dc4bd6f311fab3e62b6eacdc9a3984f21763652;hb=5adff9af1b71adb9ebaaa09159821b1947f7f625;hp=1be1d8a5af10d0a81293b34c1d3bd25d0ac3b419;hpb=4b0f6c610f755e0cb93843d5a2a6c70336eafe39;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/extra/m_sslinfo.cpp b/src/modules/extra/m_sslinfo.cpp index 1be1d8a5a..7dc4bd6f3 100644 --- a/src/modules/extra/m_sslinfo.cpp +++ b/src/modules/extra/m_sslinfo.cpp @@ -2,31 +2,29 @@ * | 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 + */ class cmd_sslinfo : public command_t { public: @@ -89,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); } };