pub async fn write_http_resp<T>( stream: &mut T, status: u16, content: &str, content_type: &str, ) -> Result<()>where T: AsyncReadExt + AsyncWriteExt + Unpin,