XinZhang

Results 2 issues of XinZhang

is there any easy way to convert response string to a response struct ? as we can see, the response struct is not always same with xml struct in response...

在原始`http/asio/Transport.cpp`中,当服务器使用`Transfer-Encoding: chunked` 方式时,没有问题,但是在Go服务器中,没有使用这种方式,导致137行的readsome阻塞,程序无反应,修改方式如下: ```c++ // 125-129 bool nosize = !len; size_t n = std::min(len, response.size()); // 将header修改为response for (size_t i = 0; i < n; ++i, --len) { responseStream