add Request::job_second_id

This commit is contained in:
2022-08-20 00:31:10 +02:00
parent 3609d94c09
commit 5dd34c802e
4 changed files with 15 additions and 4 deletions

View File

@@ -93,6 +93,7 @@ public:
static const int status_200_ok = 200;
static const int status_201_created = 201;
static const int status_204_no_content = 204;
static const int status_300_multiple_choices = 300;
static const int status_301_moved_permanently = 301;
@@ -108,6 +109,7 @@ public:
static constexpr const wchar_t * str_status_200 = L"OK";
static constexpr const wchar_t * str_status_201 = L"Created";
static constexpr const wchar_t * str_status_204 = L"No Content";
static constexpr const wchar_t * str_status_300 = L"Multiple Choices";
static constexpr const wchar_t * str_status_301 = L"Moved Permanently";
@@ -137,6 +139,7 @@ protected:
static constexpr StatusIntStringMapHelper status_int_string_map[] = {
{status_200_ok, str_status_200},
{status_201_created, str_status_201},
{status_204_no_content, str_status_204},
{status_300_multiple_choices, str_status_300},
{status_301_moved_permanently, str_status_301},