diff options
| author | Stefan Boberg <[email protected]> | 2026-03-12 17:02:14 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2026-03-12 17:02:14 +0100 |
| commit | 34653faa965351f054e8fa792e17a8012c82b9a5 (patch) | |
| tree | 6f3554f9264f52fa084880ac8a00808252a42ca9 /src/zenhttp/httpserver.cpp | |
| parent | undo changelog entries which were not related to changes on this branch (diff) | |
| parent | Add --no-network option (#831) (diff) | |
| download | zen-34653faa965351f054e8fa792e17a8012c82b9a5.tar.xz zen-34653faa965351f054e8fa792e17a8012c82b9a5.zip | |
Merge branch 'main' into sb/compute-scheduler
Diffstat (limited to 'src/zenhttp/httpserver.cpp')
| -rw-r--r-- | src/zenhttp/httpserver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenhttp/httpserver.cpp b/src/zenhttp/httpserver.cpp index 1a0018908..6ba0ca563 100644 --- a/src/zenhttp/httpserver.cpp +++ b/src/zenhttp/httpserver.cpp @@ -1157,7 +1157,7 @@ CreateHttpServerClass(const std::string_view ServerClass, const HttpServerConfig ZEN_INFO("using asio HTTP server implementation") return CreateHttpAsioServer(AsioConfig { .ThreadCount = Config.ThreadCount, .ForceLoopback = Config.ForceLoopback, .IsDedicatedServer = Config.IsDedicatedServer, - .UnixSocketPath = Config.UnixSocketPath, + .NoNetwork = Config.NoNetwork, .UnixSocketPath = Config.UnixSocketPath, #if ZEN_USE_OPENSSL .HttpsPort = Config.HttpsPort, .CertFile = Config.CertFile, .KeyFile = Config.KeyFile, #endif |