mirror of
https://github.com/pocoproject/poco.git
synced 2025-03-30 15:45:55 +02:00
added constant for HTTP PATCH method
This commit is contained in:
parent
526ba5d0b3
commit
cad2e02c3f
@ -136,6 +136,7 @@ public:
|
||||
static const std::string HTTP_DELETE;
|
||||
static const std::string HTTP_TRACE;
|
||||
static const std::string HTTP_CONNECT;
|
||||
static const std::string HTTP_PATCH;
|
||||
|
||||
static const std::string HOST;
|
||||
static const std::string COOKIE;
|
||||
|
@ -37,6 +37,7 @@ const std::string HTTPRequest::HTTP_OPTIONS = "OPTIONS";
|
||||
const std::string HTTPRequest::HTTP_DELETE = "DELETE";
|
||||
const std::string HTTPRequest::HTTP_TRACE = "TRACE";
|
||||
const std::string HTTPRequest::HTTP_CONNECT = "CONNECT";
|
||||
const std::string HTTPRequest::HTTP_PATCH = "PATCH";
|
||||
const std::string HTTPRequest::HOST = "Host";
|
||||
const std::string HTTPRequest::COOKIE = "Cookie";
|
||||
const std::string HTTPRequest::AUTHORIZATION = "Authorization";
|
||||
|
Loading…
x
Reference in New Issue
Block a user