forked from netty/netty
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[netty#2542] HTTP post request decoder does not support quoted bounda…
…ries Motivation: According to RFC2616 section 19, boundary string could be quoted, but currently the PostRequestDecoder does not support it while it should. Modifications: Once the boundary is found, one check is made to verify if the boundary is "quoted", and if so, it is "unqoted". Note: in following usage of this boundary (as delimiter), quote seems no more allowed according to the same RFC, so the reason that only the boundary definition is corrected. Result: Now the boundary could be whatever quoted or not. A Junit test case checks it.
- Loading branch information
1 parent
c16de8f
commit 89ed151
Showing
2 changed files
with
42 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters