-
Notifications
You must be signed in to change notification settings - Fork 22
Open
Description
Do you consider the situation when http Transfer-encoding is chunked?
For example:
regex = "Hello"
replace= "Hi"
HTTP/1.1 200 OK\r\n
Content-Type: text/plain\r\n
Transfer-Encoding: chunked\r\n
\r\n
1B\r\n
Hello world! I love Mozilla\r\n
9\r\n
Developer\r\n
7\r\n
Network\r\n
0\r\n
\r\n
=>
HTTP/1.1 200 OK\r\n
Content-Type: text/plain\r\n
Transfer-Encoding: chunked\r\n
\r\n
1B\r\n
Hi world! I love Mozilla\r\n
9\r\n
Developer\r\n
7\r\n
Network\r\n
0\r\n
\r\n
Metadata
Metadata
Assignees
Labels
No labels