diff options
| author | Stefan Boberg <[email protected]> | 2021-09-08 19:28:59 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-08 19:28:59 +0200 |
| commit | ce4276a783c437148400c79a0276ce2df58b4bf8 (patch) | |
| tree | db5a85ddfc34149317925ce4b996246095427b38 /zenutil/include | |
| parent | Logging vcxproj changes (diff) | |
| download | zen-ce4276a783c437148400c79a0276ce2df58b4bf8.tar.xz zen-ce4276a783c437148400c79a0276ce2df58b4bf8.zip | |
Adding ZenServerInstance::GetBaseUri()
Diffstat (limited to 'zenutil/include')
| -rw-r--r-- | zenutil/include/zenserverprocess.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/zenutil/include/zenserverprocess.h b/zenutil/include/zenserverprocess.h index d0093537e..f7d911a87 100644 --- a/zenutil/include/zenserverprocess.h +++ b/zenutil/include/zenserverprocess.h @@ -55,6 +55,8 @@ struct ZenServerInstance void AttachToRunningServer(int BasePort = 0); + std::string GetBaseUri() const; + private: ZenServerEnvironment& m_Env; zen::ProcessHandle m_Process; @@ -63,6 +65,7 @@ private: bool m_Terminate = false; std::filesystem::path m_TestDir; bool m_MeshEnabled = false; + int m_BasePort = 0; void CreateShutdownEvent(int BasePort); }; |