1 2 3 4 5 6 7 8
use httparse::Header; use crate::delete; pub fn process(_headers: Vec<Header>) -> &'static [u8] { delete!("Client connection closed, awaiting resync"); return b"HTTP/1.1 200 OK\r\n\r\n"; }