tl;dr What is TLS implementation
in the context of hyper::client
?
I have read Getting Started with a Client | hyper
In the example code it has:
// HTTPS requires picking a TLS implementation, so give a better
// warning if the user tries to request an 'https' URL.
let url = url.parse::<hyper::Uri>().unwrap();
if url.scheme_part().map(|s| s.as_ref()) != Some("http") {
println!("This example only works with 'http' URLs.");
return;
}
This is not useful to me. What does picking a TLS implementation
mean?
There is not a lot of http
these days!
So what do I do?