Private
Public Access
1
0

Adds CONTENT_LENGTH workaround for CocoaHTTPServer bug

This commit is contained in:
2025-06-12 21:19:47 -07:00
parent ff03e73758
commit 4f40be205d
4 changed files with 26 additions and 9 deletions

View File

@@ -132,6 +132,7 @@ impl APIInterface for TestClient {
&mut self,
data: tokio::io::BufReader<R>,
filename: &str,
size: u64,
) -> Result<String, Self::Error>
where
R: tokio::io::AsyncRead + Unpin + Send + Sync + 'static,