mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
410 B
25 lines
410 B
#include <cassert> |
|
#include "HTTP.h" |
|
|
|
using namespace i2p::http; |
|
|
|
int main() { |
|
const char *buf = |
|
"4\r\n" |
|
"HTTP\r\n" |
|
"A\r\n" |
|
" response \r\n" |
|
"E\r\n" |
|
"with \r\n" |
|
"chunks.\r\n" |
|
"0\r\n" |
|
"\r\n" |
|
; |
|
std::stringstream in(buf); |
|
std::stringstream out; |
|
|
|
assert(MergeChunkedResponse(in, out) == true); |
|
assert(out.str() == "HTTP response with \r\nchunks."); |
|
|
|
return 0; |
|
}
|
|
|