add Request::job_second_id
This commit is contained in:
@@ -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},
|
||||
|
Reference in New Issue
Block a user