diff options
| author | Stefan Boberg <[email protected]> | 2021-09-15 21:39:53 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-15 21:39:53 +0200 |
| commit | 2f28b9bee4da0ddebe0f6de9419e3b3f80ca0911 (patch) | |
| tree | 2e377c2740e5cda528bda2bbff49cebbfb2c5962 /zenhttp/include | |
| parent | Merge branch 'main' of https://github.com/EpicGames/zen (diff) | |
| download | zen-2f28b9bee4da0ddebe0f6de9419e3b3f80ca0911.tar.xz zen-2f28b9bee4da0ddebe0f6de9419e3b3f80ca0911.zip | |
Added session id generation and code to include it in HttpClient HTTP requests
Diffstat (limited to 'zenhttp/include')
| -rw-r--r-- | zenhttp/include/zenhttp/httpclient.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/zenhttp/include/zenhttp/httpclient.h b/zenhttp/include/zenhttp/httpclient.h index 8975f6fe1..c3bdf0506 100644 --- a/zenhttp/include/zenhttp/httpclient.h +++ b/zenhttp/include/zenhttp/httpclient.h @@ -5,6 +5,7 @@ #include "zenhttp.h" #include <zencore/iobuffer.h> +#include <zencore/uid.h> #include <zenhttp/httpcommon.h> #include <zencore/windows.h> @@ -41,6 +42,7 @@ public: private: std::string m_BaseUri; + std::string m_SessionId; }; } // namespace zen |