You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to use a httplib::SSLClient object to post chunks of data (using Transfer-Encoding: chunked) while an another thread receives chunked data from a server. After looking through the class ClientImpl, I was only able to find the Result Post(const char *path, ContentProviderWithoutLength content_provider, const char *content_type); which returns the response after all the data is sent whereas I would like a Post(...) function which processes incoming data simultaneously. Is this possible to implement?