1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-02-07 07:44:13 +00:00

[HTTP] add PROFIND support

This commit is contained in:
R4SAS 2019-06-06 18:07:17 +03:00
parent 14f0d6d26b
commit c6a903572c

View File

@ -17,7 +17,7 @@ namespace i2p {
namespace http { namespace http {
const std::vector<std::string> HTTP_METHODS = { const std::vector<std::string> HTTP_METHODS = {
"GET", "HEAD", "POST", "PUT", "PATCH", "GET", "HEAD", "POST", "PUT", "PATCH",
"DELETE", "OPTIONS", "CONNECT" "DELETE", "OPTIONS", "CONNECT", "PROPFIND"
}; };
const std::vector<std::string> HTTP_VERSIONS = { const std::vector<std::string> HTTP_VERSIONS = {
"HTTP/1.0", "HTTP/1.1" "HTTP/1.0", "HTTP/1.1"