aboutsummaryrefslogtreecommitdiff
path: root/src/zenhttp/servers/httpnull.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/zenhttp/servers/httpnull.cpp')
-rw-r--r--src/zenhttp/servers/httpnull.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/zenhttp/servers/httpnull.cpp b/src/zenhttp/servers/httpnull.cpp
index 9ac1c61ce..06838a0ed 100644
--- a/src/zenhttp/servers/httpnull.cpp
+++ b/src/zenhttp/servers/httpnull.cpp
@@ -19,20 +19,20 @@ HttpNullServer::~HttpNullServer()
}
void
-HttpNullServer::RegisterService(HttpService& Service)
+HttpNullServer::OnRegisterService(HttpService& Service)
{
ZEN_UNUSED(Service);
}
int
-HttpNullServer::Initialize(int BasePort, std::filesystem::path DataDir)
+HttpNullServer::OnInitialize(int BasePort, std::filesystem::path DataDir)
{
ZEN_UNUSED(DataDir);
return BasePort;
}
void
-HttpNullServer::Run(bool IsInteractiveSession)
+HttpNullServer::OnRun(bool IsInteractiveSession)
{
const bool TestMode = !IsInteractiveSession;
@@ -76,13 +76,13 @@ HttpNullServer::Run(bool IsInteractiveSession)
}
void
-HttpNullServer::RequestExit()
+HttpNullServer::OnRequestExit()
{
m_ShutdownEvent.Set();
}
void
-HttpNullServer::Close()
+HttpNullServer::OnClose()
{
}