diff options
| author | 2021-05-11 03:53:43 +0100 | |
|---|---|---|
| committer | 2021-05-11 04:07:45 +0100 | |
| commit | 3ca912ad71cdc4004401e0977be73c674bb91fbc (patch) | |
| tree | cf57b43229becfc3d9c8532a2d4f18f095f024ec /include/modules | |
| parent | Optimise building the link data string. (diff) | |
| parent | Send ERR_BADCHANMASK when trying to OJOIN/SAJOIN an invalid channel. (diff) | |
Merge branch 'insp3' into master.
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 | 2 | ||||
| -rw-r--r-- | include/modules/ssl.h | 4 |
4 files changed, 6 insertions, 6 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 179aa778d..70473a475 100644 --- a/include/modules/dns.h +++ b/include/modules/dns.h @@ -174,8 +174,8 @@ namespace DNS /* Use result cache if available */ bool use_cache; /* Request id */ - RequestId id = 0; - /* Creator of this request */ + RequestId id = 0; + /* 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 549b00918..2bf7763e6 100644 --- a/include/modules/regex.h +++ b/include/modules/regex.h @@ -84,7 +84,7 @@ class Regex::SimpleEngine final : public Regex::Engine { public: - /** @copydoc Regex::Engine::Engine */ + /** @copydoc Regex::Engine::Engine */ SimpleEngine(Module* Creator, const std::string& Name) : Regex::Engine(Creator, Name) { diff --git a/include/modules/ssl.h b/include/modules/ssl.h index fc1bcfb1a..0328967df 100644 --- a/include/modules/ssl.h +++ b/include/modules/ssl.h @@ -239,7 +239,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 * @return The TLS client certificate information, NULL if the peer is not using TLS @@ -272,7 +272,7 @@ class SSLClientCert class UserCertificateAPIBase : public DataProvider { public: - UserCertificateAPIBase(Module* parent) + UserCertificateAPIBase(Module* parent) : DataProvider(parent, "m_sslinfo_api") { } |
