mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
560 B
27 lines
560 B
3 years ago
|
use std::io::prelude::*;
|
||
|
use std::net::TcpListener;
|
||
|
use std::net::TcpStream;
|
||
|
|
||
|
fn main() {
|
||
|
let listener = TcpListener::bind("127.0.0.1:7878").unwrap();
|
||
|
|
||
|
for stream in listener.incoming() {
|
||
|
let stream = stream.unwrap();
|
||
|
|
||
|
handle_connection(stream);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// ANCHOR: here
|
||
|
fn handle_connection(mut stream: TcpStream) {
|
||
|
let mut buffer = [0; 1024];
|
||
|
|
||
|
stream.read(&mut buffer).unwrap();
|
||
|
|
||
|
let response = "HTTP/1.1 200 OK\r\n\r\n";
|
||
|
|
||
|
stream.write(response.as_bytes()).unwrap();
|
||
|
stream.flush().unwrap();
|
||
|
}
|
||
|
// ANCHOR_END: here
|