diff --git a/src/main.rs b/src/main.rs index 8fef9d1..454d338 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,18 +1,14 @@ -// Uncomment this block to pass the first stage -use std::net::TcpListener; +use std::{ io::Write, net::TcpListener }; fn main() { - // You can use print statements as follows for debugging, they'll be visible when running tests. - println!("Logs from your program will appear here!"); - - // Uncomment this block to pass the first stage - // let listener = TcpListener::bind("127.0.0.1:4221").unwrap(); for stream in listener.incoming() { match stream { - Ok(_stream) => { + Ok(mut stream) => { println!("accepted new connection"); + let _200 = b"HTTP/1.1 200 OK\r\n\r\n"; + let _ = stream.write(_200); } Err(e) => { println!("error: {}", e);