如何在没有 HTTP 库的情况下发送 404 HTTP 响应?

How do I send a 404 HTTP response without a HTTP library?

这更多是为了了解事情是如何工作的,所以请不要建议使用 HTTP 库。

我有以下代码

use tokio::net::{TcpListener, TcpStream};

use std::error::Error;

async fn process_socket(mut socket: TcpStream) {
    socket
        .write_all(b"HTTP/1.1 404
Content-Length: 0")
        .await
        .expect("failed to write data to socket");
    socket
        .flush()
        .await
        .expect("failed to flush socket");    
}

根据这个 question,它应该是有效的最小 HTTP 响应。当我 运行 并在浏览器中访问该页面时,我得到以下内容

请注意,该列中没有状态,似乎无法识别该消息。

我也尝试过 safari,它说...

"cannot parse response" (NSURLErrorDomain:-1017)

我错过了什么?

剩下的代码是...

#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
    let addr = "127.0.0.1:8080";
    let listener = TcpListener::bind(&addr).await?;
    println!("Listening on: {}", addr);
    loop{
        let (socket, _) = listener.accept().await?;
        tokio::spawn(async move {
            // In a loop, read data from the socket and write the data back.
            process_socket(socket).await; 
        });
    }
}

您缺少几个 \r\n 分隔符。 headers 必须由一对这样的分隔,并且响应的 header 部分必须由两个这样的对终止:

.write_all(b"HTTP/1.1 404\r\nContent-Length: 0\r\n\r\n")

From the spec

Response      = Status-Line               ; Section 6.1
                       *(( general-header        ; Section 4.5
                        | response-header        ; Section 6.2
                        | entity-header ) CRLF)  ; Section 7.1
                       CRLF
                       [ message-body ]          ; Section 7.2