We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentd51f453 commitd1d393eCopy full SHA for d1d393e
boost/network/protocol/http/client/facade.hpp
@@ -63,11 +63,11 @@ namespace boost { namespace network { namespace http {
63
return pimpl->request_skeleton(request,"POST",true, body_handler);
64
}
65
66
- responseconstpost(requestconst &request,body_callback_function callback) {
+ responseconstpost(requestconst &request,body_callback_function_type callback) {
67
returnpost(request,string_type(),string_type(), callback);
68
69
70
- responseconstpost(requestconst &request, string_typeconst &body,body_callback_function callback) {
+ responseconstpost(requestconst &request, string_typeconst &body,body_callback_function_type callback) {
71
returnpost(request, body,string_type(), callback);
72
73