From 2d9cd3eefe4e3837290dc60c9dc53705c2a6d796 Mon Sep 17 00:00:00 2001 From: Florian Geiger Date: Thu, 1 Dec 2022 10:55:59 +0100 Subject: [PATCH] Anpassung IP --- src/bin/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/client.rs b/src/bin/client.rs index 5f80a71..7b6183a 100644 --- a/src/bin/client.rs +++ b/src/bin/client.rs @@ -4,7 +4,7 @@ use std::net::TcpStream; fn main() { //let stream = TcpStream::connect("172.30.16.1:8080"); //let stream = TcpStream::connect("27.0.0.1:8080"); - match TcpStream::connect("localhost:3333") { + match TcpStream::connect("localhost:7878") { Ok(mut stream) => { println!("Successfully connected to server");