diff options
| author | Stefan Boberg <[email protected]> | 2026-03-17 23:34:29 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2026-03-17 23:34:29 +0100 |
| commit | d8d0bbcd788d2d3d20029bf729a7b1d20cd44afb (patch) | |
| tree | 08437c8fa5a253e000b9cd08e71b44801179f1f3 /src/zenhttp/servers/httpasio.cpp | |
| parent | Fix crash handler: remove stack overflow case and fix misleading comment (diff) | |
| parent | add missing metadata for PS5 used by test scripts (diff) | |
| download | zen-sb/local-crashreports.tar.xz zen-sb/local-crashreports.zip | |
Merge branch 'main' into sb/local-crashreportssb/local-crashreports
Diffstat (limited to 'src/zenhttp/servers/httpasio.cpp')
| -rw-r--r-- | src/zenhttp/servers/httpasio.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zenhttp/servers/httpasio.cpp b/src/zenhttp/servers/httpasio.cpp index 9f4875eaf..a2cae8762 100644 --- a/src/zenhttp/servers/httpasio.cpp +++ b/src/zenhttp/servers/httpasio.cpp @@ -2182,7 +2182,7 @@ HttpAsioServerImpl::Start(uint16_t Port, const AsioConfig& Config) if (!Config.NoNetwork) { m_Acceptor.reset( - new asio_http::HttpAcceptor(*this, m_IoService, Port, Config.ForceLoopback, /*AllowPortProbing */ !Config.IsDedicatedServer)); + new asio_http::HttpAcceptor(*this, m_IoService, Port, Config.ForceLoopback, /*AllowPortProbing */ Config.AllowPortProbing)); if (!m_Acceptor->IsValid()) { @@ -2224,7 +2224,7 @@ HttpAsioServerImpl::Start(uint16_t Port, const AsioConfig& Config) *m_SslContext, gsl::narrow<uint16_t>(Config.HttpsPort), Config.ForceLoopback, - /*AllowPortProbing*/ !Config.IsDedicatedServer)); + /*AllowPortProbing*/ Config.AllowPortProbing)); if (m_HttpsAcceptor->IsValid()) { |