add basic client connectivity

This commit is contained in:
Niklas Eichenseer 2022-11-17 11:32:34 +01:00
parent 1202463d4d
commit 9a1997ad55
2 changed files with 12 additions and 2 deletions

3
.gitignore vendored
View File

@ -15,3 +15,6 @@ Cargo.lock
# Added by cargo
/target
# Needed to ignore IntelliJ stettings
/.idea

View File

@ -1,3 +1,10 @@
use std::net::TcpStream;
fn main() {
println! ("client");
let stream = TcpStream::connect("127.0.0.1:8080");
if stream.is_ok() {
println!("Connected to the server!");
} else {
println!("Couldn't connect to server...");
}
} // the stream is closed here