Initial commit

This commit is contained in:
nora 2023-09-07 21:25:03 +02:00
commit 46a1ec0a16
9 changed files with 412 additions and 0 deletions

4
src/main.rs Normal file
View file

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