diff options
| author | 2018-07-13 00:47:53 +0100 | |
|---|---|---|
| committer | 2018-07-18 19:21:45 +0100 | |
| commit | 87e328a1fbfcacafc013ba580d31dd4123f1e7e2 (patch) | |
| tree | 5e7368079fec41e74cd0c30a6b80fa6da7b9599b /src/modules/m_cloaking.cpp | |
| parent | Release v3.0.0 alpha 8. (diff) | |
| download | inspircd++-87e328a1fbfcacafc013ba580d31dd4123f1e7e2.tar.gz inspircd++-87e328a1fbfcacafc013ba580d31dd4123f1e7e2.tar.bz2 inspircd++-87e328a1fbfcacafc013ba580d31dd4123f1e7e2.zip | |
Add the family() member to the sockaddrs union.
Diffstat (limited to 'src/modules/m_cloaking.cpp')
| -rw-r--r-- | src/modules/m_cloaking.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_cloaking.cpp b/src/modules/m_cloaking.cpp index 515244231..87ff14a9d 100644 --- a/src/modules/m_cloaking.cpp +++ b/src/modules/m_cloaking.cpp @@ -223,7 +223,7 @@ class ModuleCloaking : public Module size_t hop1, hop2, hop3; size_t len1, len2; std::string rv; - if (ip.sa.sa_family == AF_INET6) + if (ip.family() == AF_INET6) { bindata = std::string((const char*)ip.in6.sin6_addr.s6_addr, 16); hop1 = 8; @@ -267,7 +267,7 @@ class ModuleCloaking : public Module } else { - if (ip.sa.sa_family == AF_INET6) + if (ip.family() == AF_INET6) { rv.append(InspIRCd::Format(".%02x%02x.%02x%02x%s", ip.in6.sin6_addr.s6_addr[2], ip.in6.sin6_addr.s6_addr[3], |
