Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Server/Source/core_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1064,6 +1064,18 @@ class HTTPAsyncIO
case HTTPRequestType_Head:
res = request.Head(path.data());
break;
case HTTPRequestType_Put:
res = request.Put(path.data(), String(data), "application/x-www-form-urlencoded");
break;
case HTTPRequestType_Patch:
res = request.Patch(path.data(), String(data), "application/x-www-form-urlencoded");
break;
case HTTPRequestType_Delete:
res = request.Delete(path.data());
break;
case HTTPRequestType_Options:
res = request.Options(path.data());
break;
}

if (res)
Expand Down
Loading