diff options
Diffstat (limited to 'include/modules')
-rw-r--r-- | include/modules/callerid.h | 2 | ||||
-rw-r--r-- | include/modules/dns.h | 4 | ||||
-rw-r--r-- | include/modules/regex.h | 8 | ||||
-rw-r--r-- | include/modules/ssl.h | 4 |
4 files changed, 9 insertions, 9 deletions
diff --git a/include/modules/callerid.h b/include/modules/callerid.h index eda930d28..989a5918c 100644 --- a/include/modules/callerid.h +++ b/include/modules/callerid.h @@ -28,7 +28,7 @@ namespace CallerID class CallerID::APIBase : public DataProvider { public: - APIBase(Module* parent) + APIBase(Module* parent) : DataProvider(parent, "m_callerid_api") { } diff --git a/include/modules/dns.h b/include/modules/dns.h index bce842bd8..aa6092788 100644 --- a/include/modules/dns.h +++ b/include/modules/dns.h @@ -162,8 +162,8 @@ namespace DNS /* Use result cache if available */ bool use_cache; /* Request id */ - RequestId id; - /* Creator of this request */ + RequestId id; + /* Creator of this request */ Module* const creator; Request(Manager* mgr, Module* mod, const std::string& addr, QueryType qt, bool usecache = true, unsigned int timeout = 0) diff --git a/include/modules/regex.h b/include/modules/regex.h index 5a0ea4903..6d036e148 100644 --- a/include/modules/regex.h +++ b/include/modules/regex.h @@ -59,9 +59,9 @@ class RegexFactory : public DataProvider class RegexException : public ModuleException { public: - RegexException(const std::string& regex, const std::string& error) - : ModuleException("Error in regex '" + regex + "': " + error) { } + RegexException(const std::string& regex, const std::string& error) + : ModuleException("Error in regex '" + regex + "': " + error) { } - RegexException(const std::string& regex, const std::string& error, int offset) - : ModuleException("Error in regex '" + regex + "' at offset " + ConvToStr(offset) + ": " + error) { } + RegexException(const std::string& regex, const std::string& error, int offset) + : ModuleException("Error in regex '" + regex + "' at offset " + ConvToStr(offset) + ": " + error) { } }; diff --git a/include/modules/ssl.h b/include/modules/ssl.h index c9229cf9d..ec16a56c3 100644 --- a/include/modules/ssl.h +++ b/include/modules/ssl.h @@ -250,7 +250,7 @@ class SSLIOHook : public IOHook class SSLClientCert { public: - /** + /** * Get the client certificate from a socket * @param sock The socket to get the certificate from, the socket does not have to use TLS (SSL) * @return The TLS (SSL) client certificate information, NULL if the peer is not using TLS (SSL) @@ -283,7 +283,7 @@ class SSLClientCert class UserCertificateAPIBase : public DataProvider { public: - UserCertificateAPIBase(Module* parent) + UserCertificateAPIBase(Module* parent) : DataProvider(parent, "m_sslinfo_api") { } |