I'd like to stream a client POST request body with libevent and evhttp. I've found examples of sending requests with fixed bodies, but am not sure how to setup a a request with a body I will need to continuously write and update for an undetermined period. Is it possible to do this will libevent? My current baseline of code looks something like this:
#include <evhttp.h>
#include <event2/event.h>
#include <event2/http.h>
void http_request_done(struct evhttp_request *req, void *arg) {
printf("DONE!\n");
}
int main(int argc, char **argv) {
struct event_base *base = event_base_new();
struct evhttp_connection *conn = evhttp_connection_base_new(base, NULL, "127.0.0.1", 3000);
struct evhttp_request *req = evhttp_request_new(http_request_done, NULL);
evhttp_make_request(conn, req, EVHTTP_REQ_POST, "/");
evhttp_connection_set_timeout(req->evcon, 600);
event_base_loop(base, EVLOOP_NONBLOCK);
event_base_dispatch(base);
return 0;
}
How do I go about sending a POST request with a streaming body?