Update ch20-03-graceful-shutdown-and-cleanup.md

This commit is contained in:
Zehua Zou 2021-02-07 01:48:08 +08:00 committed by GitHub
parent 5f225daae8
commit f6fe40b11b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -314,7 +314,7 @@ fn main() {
}
fn handle_connection(mut stream: TcpStream) {
let mut buffer = [0; 512];
let mut buffer = [0; 1024];
stream.read(&mut buffer).unwrap();
let get = b"GET / HTTP/1.1\r\n";