fix ch20-web-server/listing-20-09/src code error

This commit is contained in:
cracker8090 2022-06-10 11:11:34 +08:00
parent a4d67c2354
commit 21c40e8fa0

View File

@ -26,7 +26,7 @@ fn handle_connection(mut stream: TcpStream) {
let get = b"GET / HTTP/1.1\r\n";
// ANCHOR: here
let (status_line, filename) = if buffer.starts_with(get) {
let (status_line, filename) = if buffer.starts_with("GET".as_bytes()) {
("HTTP/1.1 200 OK", "hello.html")
} else {
("HTTP/1.1 404 NOT FOUND", "404.html")