Procházet zdrojové kódy

Allow connections

master
Noelle před 4 roky
rodič
revize
2bcd913474
1 změnil soubory, kde provedl 9 přidání a 1 odebrání
  1. 9
    1
      src/main.rs

+ 9
- 1
src/main.rs Zobrazit soubor

@@ -1,3 +1,11 @@
use std::net::TcpListener;

fn main() {
println!("Hello, world!");
let listener = TcpListener::bind("127.0.0.1:26382").unwrap();

for stream in listener.incoming() {
let stream = stream.unwrap();

println!("Connection established!");
}
}

Načítá se…
Zrušit
Uložit