mirror of
https://github.com/curl/curl.git
synced 2026-08-05 08:26:14 +03:00
sws: Added writedelay HTTP server command
This delays between write operations, hopefully making it easier to spot problems where libcurl doesn't flush the socket properly before waiting for the next response.
This commit is contained in:
parent
8500586251
commit
15622e69a9
3 changed files with 22 additions and 3 deletions
|
|
@ -13,9 +13,10 @@ Range
|
|||
HTTP/1.1 416 Requested Range Not Satisfiable
|
||||
Date: Thu, 09 Sep 2010 14:49:00 GMT
|
||||
Accept-Ranges: bytes
|
||||
Content-Length: 6
|
||||
Content-Length: 115
|
||||
|
||||
Error
|
||||
This is a long error message that is large enough that the test server is
|
||||
guaranteed to split it into two packets.
|
||||
</data>
|
||||
|
||||
<data1>
|
||||
|
|
@ -28,6 +29,10 @@ Content-Type: text/plain
|
|||
|
||||
partial body
|
||||
</data1>
|
||||
|
||||
<servercmd>
|
||||
writedelay: 1
|
||||
</servercmd>
|
||||
</reply>
|
||||
|
||||
# Client-side
|
||||
|
|
@ -49,8 +54,10 @@ HTTP with invalid range then another URL
|
|||
HTTP/1.1 416 Requested Range Not Satisfiable
|
||||
Date: Thu, 09 Sep 2010 14:49:00 GMT
|
||||
Accept-Ranges: bytes
|
||||
Content-Length: 6
|
||||
Content-Length: 115
|
||||
|
||||
This is a long error message that is large enough that the test server is
|
||||
guaranteed to split it into two packets.
|
||||
HTTP/1.1 206 Partial Content
|
||||
Date: Thu, 09 Sep 2010 14:49:01 GMT
|
||||
Accept-Ranges: bytes
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue