diff options
| author | Liam Mitchell <[email protected]> | 2026-01-29 17:59:34 -0800 |
|---|---|---|
| committer | Liam Mitchell <[email protected]> | 2026-01-29 17:59:34 -0800 |
| commit | fa8e3171614e188766553db569e09f7bc0d377bc (patch) | |
| tree | 430894631f4bfb970ca0c082744e2eb2caae6b92 /src/zenhttp/servers/httpplugin.cpp | |
| parent | Run Windows service as an interactive session, so we correctly respond to Req... (diff) | |
| download | zen-fa8e3171614e188766553db569e09f7bc0d377bc.tar.xz zen-fa8e3171614e188766553db569e09f7bc0d377bc.zip | |
Respond to RequestApplicationExit() in http server implementations even in non-interactive sessions
Diffstat (limited to 'src/zenhttp/servers/httpplugin.cpp')
| -rw-r--r-- | src/zenhttp/servers/httpplugin.cpp | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/src/zenhttp/servers/httpplugin.cpp b/src/zenhttp/servers/httpplugin.cpp index 7ee4c6e62..b9217ed87 100644 --- a/src/zenhttp/servers/httpplugin.cpp +++ b/src/zenhttp/servers/httpplugin.cpp @@ -790,23 +790,17 @@ HttpPluginServerImpl::OnRun(bool IsInteractive) { ZEN_MEMSCOPE(GetHttppluginTag()); - const bool TestMode = !IsInteractive; - - int WaitTimeout = -1; - if (!TestMode) - { - WaitTimeout = 1000; - } + const int WaitTimeout = 1000; # if ZEN_PLATFORM_WINDOWS - if (TestMode == false) + if (IsInteractive) { ZEN_CONSOLE("Zen Server running (plugin HTTP). Press ESC or Q to quit"); } do { - if (!TestMode && _kbhit() != 0) + if (IsInteractive && _kbhit() != 0) { char c = (char)_getch(); @@ -819,7 +813,7 @@ HttpPluginServerImpl::OnRun(bool IsInteractive) m_ShutdownEvent.Wait(WaitTimeout); } while (!IsApplicationExitRequested()); # else - if (TestMode == false) + if (IsInteractive) { ZEN_CONSOLE("Zen Server running (plugin HTTP). Ctrl-C to quit"); } |