This commit is contained in:
nora 2023-09-09 18:00:34 +02:00
parent 29057b8e92
commit 4b1d2805e6
3 changed files with 130 additions and 31 deletions

View file

@ -1,4 +1,4 @@
// An example program that makes a shitty HTTP/1.1 request.
fn main() {
tls::ClientConnection::establish(("nilstrieb.dev", 443)).unwrap();
tls::ClientConnection::establish("nilstrieb.dev", 443).unwrap();
}