mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-24 07:53:00 +01:00
a612b74aeb
* actix-multipart: Fix multipart boundary reading If we're not ready to read the first line after the multipart field (which should be a "\r\n" line) then return Pending instead of Ready(None) so that we will get called again to read that line. Without this I was getting MultipartError::Boundary from read_boundary() because it got the "\r\n" line instead of the boundary. Also tweaks the test_stream test to test partial reads. This is a forward port of #1189 from 1.0 * actix-multipart: Update changes for boundary fix |
||
---|---|---|
.. | ||
src | ||
Cargo.toml | ||
CHANGES.md | ||
LICENSE-APACHE | ||
LICENSE-MIT | ||
README.md |
Multipart support for actix web framework
Documentation & community resources
- API Documentation
- Chat on gitter
- Cargo package: actix-multipart
- Minimum supported Rust version: 1.39 or later