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

Method options

Libraries/Http/HttpAsyncClient.cpp:96–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

94}
95
96Result HttpAsyncClient::options(AsyncEventLoop& loop, StringSpan url, bool keepAlive)
97{
98 RequestOptions options;
99 options.method = HttpParser::Method::HttpOPTIONS;
100 options.url = url;
101 options.keepAlive = keepAlive;
102 return sendRequest(loop, options);
103}
104
105Result HttpAsyncClient::deleteRequest(AsyncEventLoop& loop, StringSpan url, bool keepAlive)
106{

Callers 1

onDeferredMethod · 0.80

Calls

no outgoing calls

Tested by 1

onDeferredMethod · 0.64