rwf2 / multer

An async parser for multipart/form-data content-type in Rust
MIT License
158 stars 37 forks source link

support `filename*` #52

Open xgjhlws opened 1 year ago

xgjhlws commented 1 year ago

Is it possiable to support field filename* ?

https://datatracker.ietf.org/doc/html/rfc6266#section-5

xgjhlws commented 1 year ago

Because C# has encoded filename to base64.When C# send multipart request to Rust, it can not parse filename correctly.

xgjhlws commented 1 year ago

In C#, send request like this: image image

In Rust, can only receive like this: image

SergioBenitez commented 1 year ago

Sure, I don't see why we can't do this. Happy to accept a PR.