Merge lp://staging/~gary-wzl77/net-cpp/bug-fixing-and-features into lp://staging/net-cpp
Proposed by
Gary.Wang
Status: | Merged | ||||||||
---|---|---|---|---|---|---|---|---|---|
Merged at revision: | 50 | ||||||||
Proposed branch: | lp://staging/~gary-wzl77/net-cpp/bug-fixing-and-features | ||||||||
Merge into: | lp://staging/net-cpp | ||||||||
Diff against target: |
804 lines (+407/-9) 14 files modified
CMakeLists.txt (+2/-2) include/core/net/http/client.h (+19/-0) include/core/net/http/method.h (+3/-1) include/core/net/http/request.h (+21/-0) include/core/net/http/streaming_client.h (+21/-1) include/core/net/http/streaming_request.h (+13/-0) src/core/net/http/impl/curl/client.cpp (+82/-2) src/core/net/http/impl/curl/client.h (+7/-0) src/core/net/http/impl/curl/easy.cpp (+23/-0) src/core/net/http/impl/curl/easy.h (+14/-1) src/core/net/http/impl/curl/request.h (+33/-0) tests/http_client_test.cpp (+73/-0) tests/http_streaming_client_test.cpp (+90/-2) tests/httpbin.h.in (+6/-0) |
||||||||
To merge this branch: | bzr merge lp://staging/~gary-wzl77/net-cpp/bug-fixing-and-features | ||||||||
Related bugs: |
|
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Thomas Voß (community) | Approve | ||
Review via email: mp+291975@code.staging.launchpad.net |
Commit message
1.Fix crash issue when sending large chunk data via PUT method (lp:1570686)
3.Support DELETE method (lp:1570687)
2.Support POST method with istream
4.Support pause and resume mechanism
5.Add some test cases
Description of the change
1.Fix crash issue when sending large chunk data via PUT method (lp:1570686)
3.Support DELETE method (lp:1570687)
2.Support POST method with istream
4.Support pause and resume mechanism
5.Add some test cases
To post a comment you must log in.
Thanks for the changes, looking good. A few minor niggles inline,