diff options
| author | 2018-07-13 10:28:28 +0100 | |
|---|---|---|
| committer | 2018-07-18 19:22:17 +0100 | |
| commit | b7716ed57704b2b2bcc665a590aecc8f02de631d (patch) | |
| tree | 43f1c62613f3aee5074009a3b8e4582dc65c3638 /src/modules/m_ident.cpp | |
| parent | Add the family() member to the sockaddrs union. (diff) | |
| download | inspircd++-b7716ed57704b2b2bcc665a590aecc8f02de631d.tar.gz inspircd++-b7716ed57704b2b2bcc665a590aecc8f02de631d.tar.bz2 inspircd++-b7716ed57704b2b2bcc665a590aecc8f02de631d.zip | |
Initial support for listening on UNIX socket endpoints.
Diffstat (limited to 'src/modules/m_ident.cpp')
| -rw-r--r-- | src/modules/m_ident.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/modules/m_ident.cpp b/src/modules/m_ident.cpp index f645a77ff..ca12a9ba3 100644 --- a/src/modules/m_ident.cpp +++ b/src/modules/m_ident.cpp @@ -277,6 +277,10 @@ class ModuleIdent : public Module void OnUserInit(LocalUser *user) CXX11_OVERRIDE { + // The ident protocol requires that clients are connecting over a protocol with ports. + if (user->client_sa.family() != AF_INET && user->client_sa.family() != AF_INET6) + return; + ConfigTag* tag = user->MyClass->config; if (!tag->getBool("useident", true)) return; |
