diff options
| author | 2022-09-01 11:31:36 +0100 | |
|---|---|---|
| committer | 2022-09-01 11:53:47 +0100 | |
| commit | 6c34d4e8eaced683b7cf8e288847d39e6501ca00 (patch) | |
| tree | 4eb9a82c5c8f0c966c8f566e953715f16f4f2832 /src/modules/m_haproxy.cpp | |
| parent | Release v4.0.0 alpha 14. (diff) | |
Update some code that uses "endpoint" to use "socket address" instead.
Diffstat (limited to 'src/modules/m_haproxy.cpp')
| -rw-r--r-- | src/modules/m_haproxy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_haproxy.cpp b/src/modules/m_haproxy.cpp index 393fb6297..b0523583e 100644 --- a/src/modules/m_haproxy.cpp +++ b/src/modules/m_haproxy.cpp @@ -274,7 +274,7 @@ private: break; } - if (!sock->OnSetLocalEndPoint(server) || !sock->OnSetRemoteEndPoint(client)) + if (!sock->OnChangeLocalSocketAddress(server) || !sock->OnChangeRemoteSocketAddress(client)) return -1; // Parse any available TLVs. |
