aboutsummaryrefslogtreecommitdiffstats
path: root/include/socket.h
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-09-01 11:31:36 +0100
committerGravatar Sadie Powell2022-09-01 11:53:47 +0100
commit6c34d4e8eaced683b7cf8e288847d39e6501ca00 (patch)
tree4eb9a82c5c8f0c966c8f566e953715f16f4f2832 /include/socket.h
parentRelease v4.0.0 alpha 14. (diff)
Update some code that uses "endpoint" to use "socket address" instead.
Diffstat (limited to 'include/socket.h')
-rw-r--r--include/socket.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/socket.h b/include/socket.h
index 8347ef84d..d6997f9e6 100644
--- a/include/socket.h
+++ b/include/socket.h
@@ -162,9 +162,9 @@ struct CoreExport FailedPort final
/** The config tag that the listener was created from. */
std::shared_ptr<ConfigTag> tag;
- FailedPort(int err, irc::sockets::sockaddrs& ep, std::shared_ptr<ConfigTag> cfg)
+ FailedPort(int err, irc::sockets::sockaddrs& addr, std::shared_ptr<ConfigTag> cfg)
: error(err)
- , sa(ep)
+ , sa(addr)
, tag(cfg)
{
}