use std::wstring_view in SessionIdManager::DecodeToken(...) method

This commit is contained in:
2022-08-10 12:42:16 +02:00
parent de972de948
commit 6266eac729
3 changed files with 17 additions and 2 deletions

View File

@@ -52,6 +52,7 @@ public:
static constexpr const wchar_t * content_type = L"Content-Type";
static constexpr const wchar_t * accept = L"Accept";
static constexpr const wchar_t * accept_language = L"Accept-Language";
static constexpr const wchar_t * authorization = L"Authorization";
/*
* headers' names lower case
@@ -87,6 +88,7 @@ public:
static constexpr const wchar_t * multipart_form_data = L"multipart/form-data";
static constexpr const wchar_t * bearer = L"Bearer";
static constexpr const wchar_t * winix = L"Winix";
static const int status_200_ok = 200;