diff options
author | louiz’ <louiz@louiz.org> | 2020-02-25 22:52:58 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2020-02-25 22:52:58 +0100 |
commit | b18d81ae9faf6adcf4020680bc5d874bf92848c8 (patch) | |
tree | 0c60da1c3eb599ffc236b0d51a461a89a4c48e7c /src | |
parent | ab7d1bbf02b40b1171d457961d8a082e0b6b5216 (diff) | |
download | biboumi-b18d81ae9faf6adcf4020680bc5d874bf92848c8.tar.gz biboumi-b18d81ae9faf6adcf4020680bc5d874bf92848c8.tar.bz2 biboumi-b18d81ae9faf6adcf4020680bc5d874bf92848c8.tar.xz biboumi-b18d81ae9faf6adcf4020680bc5d874bf92848c8.zip |
Fix a typo in a function name (match_pairt)
It’s totally harmless
Diffstat (limited to 'src')
-rw-r--r-- | src/identd/identd_socket.cpp | 2 | ||||
-rw-r--r-- | src/network/tcp_client_socket_handler.cpp | 2 | ||||
-rw-r--r-- | src/network/tcp_client_socket_handler.hpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/identd/identd_socket.cpp b/src/identd/identd_socket.cpp index 92cd80b..422c5c0 100644 --- a/src/identd/identd_socket.cpp +++ b/src/identd/identd_socket.cpp @@ -47,7 +47,7 @@ std::string IdentdSocket::generate_answer(const BiboumiComponent& biboumi, uint1 { for (const auto& pair: bridge->get_irc_clients()) { - if (pair.second->match_port_pairt(local, remote)) + if (pair.second->match_port_pair(local, remote)) { std::ostringstream os; os << local << " , " << remote << " : USERID : OTHER : " << hash_jid(bridge->get_bare_jid()) << "\r\n"; diff --git a/src/network/tcp_client_socket_handler.cpp b/src/network/tcp_client_socket_handler.cpp index 9dda73d..e5b1b75 100644 --- a/src/network/tcp_client_socket_handler.cpp +++ b/src/network/tcp_client_socket_handler.cpp @@ -261,7 +261,7 @@ std::string TCPClientSocketHandler::get_port() const return this->port; } -bool TCPClientSocketHandler::match_port_pairt(const uint16_t local, const uint16_t remote) const +bool TCPClientSocketHandler::match_port_pair(const uint16_t local, const uint16_t remote) const { const auto remote_port = static_cast<uint16_t>(std::stoi(this->port)); return this->is_connected() && local == this->local_port && remote == remote_port; diff --git a/src/network/tcp_client_socket_handler.hpp b/src/network/tcp_client_socket_handler.hpp index 74caca9..38d8b84 100644 --- a/src/network/tcp_client_socket_handler.hpp +++ b/src/network/tcp_client_socket_handler.hpp @@ -34,7 +34,7 @@ class TCPClientSocketHandler: public TCPSocketHandler /** * Whether or not this connection is using the two given TCP ports. */ - bool match_port_pairt(const uint16_t local, const uint16_t remote) const; + bool match_port_pair(const uint16_t local, const uint16_t remote) const; protected: bool hostname_resolution_failed; |