MCPcopy Create free account
hub / github.com/Pagghiu/SaneCppLibraries / deleteRequest

Method deleteRequest

Libraries/Http/HttpAsyncClient.cpp:105–112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

103}
104
105Result HttpAsyncClient::deleteRequest(AsyncEventLoop& loop, StringSpan url, bool keepAlive)
106{
107 RequestOptions options;
108 options.method = HttpParser::Method::HttpDELETE;
109 options.url = url;
110 options.keepAlive = keepAlive;
111 return sendRequest(loop, options);
112}
113
114Result HttpAsyncClient::put(AsyncEventLoop& loop, StringSpan url, Span<const char> body, bool keepAlive)
115{

Callers 1

onDeferredMethod · 0.80

Calls

no outgoing calls

Tested by 1

onDeferredMethod · 0.64