8 lines
291 B
Text
8 lines
291 B
Text
$ begin req %env HOST 127.0.0.1% %env PORT 8080%
|
|
POST /%env FORM form% HTTP/1.1\r\n
|
|
Host: %env HOST 127.0.0.1%\r\n
|
|
Content-Type: application/x-www-form-urlencoded\r\n
|
|
Content-Length: 110\r\n -- len("example=") + 64 + len("&test=") + 32
|
|
\r\n
|
|
example=%randstr 64%&test=%randstr 32%
|
|
$ end req
|