pub unsafe extern "C" fn aws_http_connection_make_request(
client_connection: *mut aws_http_connection,
options: *const aws_http_make_request_options
) -> *mut aws_http_stream
Expand description
Create a stream, with a client connection sending a request. The request does not start sending automatically once the stream is created. You must call aws_http_stream_activate to begin execution of the request.
The options
are copied during this call.
Tip for language bindings: Do not bind the options
struct. Use something more natural for your language,
such as Builder Pattern in Java, or Python’s ability to take many optional arguments by name.