]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/inspircd.h
Pass the Extensible container to ExtensionItem::free().
[user/henk/code/inspircd.git] / include / inspircd.h
index 40c368106260f92dffddeec2113e6cbf610ac418..00093e52ba07fbbd33f0ef3d79fd87f7fd3b3fed 100644 (file)
@@ -25,6 +25,7 @@
 
 #pragma once
 
+#include <cfloat>
 #include <climits>
 #include <cmath>
 #include <csignal>
@@ -49,6 +50,7 @@
 #include "compat.h"
 #include "aligned_storage.h"
 #include "typedefs.h"
+#include "convto.h"
 #include "stdalgo.h"
 
 CoreExport extern InspIRCd* ServerInstance;
@@ -65,12 +67,12 @@ struct fakederef
 };
 
 #include "config.h"
-#include "convto.h"
 #include "dynref.h"
 #include "consolecolors.h"
 #include "cull_list.h"
 #include "extensible.h"
 #include "fileutils.h"
+#include "ctables.h"
 #include "numerics.h"
 #include "numeric.h"
 #include "uid.h"
@@ -82,12 +84,12 @@ struct fakederef
 #include "logger.h"
 #include "usermanager.h"
 #include "socket.h"
-#include "ctables.h"
 #include "command_parse.h"
 #include "mode.h"
 #include "socketengine.h"
 #include "snomasks.h"
 #include "filelogger.h"
+#include "message.h"
 #include "modules.h"
 #include "threadengine.h"
 #include "configreader.h"
@@ -342,6 +344,13 @@ class CoreExport InspIRCd
         */
        static void DefaultGenRandom(char* output, size_t max);
 
+       /** Bind to a specific port from a config tag.
+        * @param Tag the tag that contains bind information.
+        * @param sa The endpoint to listen on.
+        * @params old_ports Previously listening ports that may be on the same endpoint.
+        */
+       bool BindPort(ConfigTag* tag, const irc::sockets::sockaddrs& sa, std::vector<ListenSocket*>& old_ports);
+
        /** Bind all ports specified in the configuration file.
         * @return The number of ports bound without error
         */
@@ -374,11 +383,17 @@ class CoreExport InspIRCd
 
        /** Determines whether a channel name is valid according to the RFC 1459 rules.
         * This is the default function for InspIRCd::IsChannel.
-        * @param nick The channel name to validate.
+        * @param channel The channel name to validate.
         * @return True if the channel name is valid according to RFC 1459 rules; otherwise, false.
        */
        static bool DefaultIsChannel(const std::string& channel);
 
+       /** Determines whether a hostname is valid according to RFC 5891 rules.
+        * @param host The hostname to validate.
+        * @return True if the hostname is valid; otherwise, false.
+        */
+       static bool IsHost(const std::string& host);
+
        /** Return true if str looks like a server ID
         * @param sid string to check against
         */
@@ -407,8 +422,8 @@ class CoreExport InspIRCd
        * @param ... A variable number of format arguments.
        * @return The formatted string
        */
-       static const char* Format(const char* formatString, ...) CUSTOM_PRINTF(1, 2);
-       static const char* Format(va_list &vaList, const char* formatString) CUSTOM_PRINTF(2, 0);
+       static std::string Format(const char* formatString, ...) CUSTOM_PRINTF(1, 2);
+       static std::string Format(va_list& vaList, const char* formatString) CUSTOM_PRINTF(2, 0);
 
        /** Determines whether a nickname is valid. */
        TR1NS::function<bool(const std::string&)> IsNick;
@@ -425,7 +440,7 @@ class CoreExport InspIRCd
 
        /** Determines whether a ident is valid according to the RFC 1459 rules.
         * This is the default function for InspIRCd::IsIdent.
-        * @param nick The ident to validate.
+        * @param ident The ident to validate.
         * @return True if the ident is valid according to RFC 1459 rules; otherwise, false.
        */
        static bool DefaultIsIdent(const std::string& ident);
@@ -576,5 +591,3 @@ inline void stdalgo::culldeleter::operator()(classbase* item)
 }
 
 #include "numericbuilder.h"
-#include "modules/whois.h"
-#include "modules/stats.h"