mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
19 lines
464 B
Rust
19 lines
464 B
Rust
use std::net::TcpListener;
|
|
use std::net::TcpStream;
|
|
use std::io::{self, Read, Write};
|
|
|
|
fn handle_client(stream: TcpStream) -> io::Result<()> {
|
|
stream.write_fmt(format!("message received"))
|
|
//~^ ERROR mismatched types
|
|
}
|
|
|
|
fn main() {
|
|
if let Ok(listener) = TcpListener::bind("127.0.0.1:8080") {
|
|
for incoming in listener.incoming() {
|
|
if let Ok(stream) = incoming {
|
|
handle_client(stream);
|
|
}
|
|
}
|
|
}
|
|
}
|