Martin Natano 66cd29e747
Allow to cancel asynchronous HTTP requests (#332)
Usage:

	auto args = this->httpClient.createRequest(url, method);
	httpClient.performRequest(args, ...);
	[...]
	// Oops, we don't actually want to complete the request!
	args->cancel = true;
2021-12-20 23:01:55 -08:00
..
2021-09-29 12:15:31 -07:00
2021-11-24 08:45:04 -08:00
2021-11-24 09:00:23 -08:00
2021-11-24 09:02:42 -08:00