X-Git-Url: https://git.sesse.net/?p=nageru;a=blobdiff_plain;f=shared%2Fhttpd.cpp;fp=shared%2Fhttpd.cpp;h=006ba6599cf7fc7af46a36c4203c19ac1649a5b2;hp=74d0c26d72b1252ae1485490ab2daef41725211c;hb=07d7f0c3d8f50598144625c29a93e0aacfd996d7;hpb=d4dbce0e8dd7b7a8aec1b81ceb5c6243d5f8025e diff --git a/shared/httpd.cpp b/shared/httpd.cpp index 74d0c26..006ba65 100644 --- a/shared/httpd.cpp +++ b/shared/httpd.cpp @@ -85,19 +85,19 @@ void HTTPD::add_data_locked(StreamID stream_id, const char *buf, size_t size, St } } -int HTTPD::answer_to_connection_thunk(void *cls, MHD_Connection *connection, - const char *url, const char *method, - const char *version, const char *upload_data, - size_t *upload_data_size, void **con_cls) +HTTPD::MHD_Result HTTPD::answer_to_connection_thunk(void *cls, MHD_Connection *connection, + const char *url, const char *method, + const char *version, const char *upload_data, + size_t *upload_data_size, void **con_cls) { HTTPD *httpd = (HTTPD *)cls; return httpd->answer_to_connection(connection, url, method, version, upload_data, upload_data_size, con_cls); } -int HTTPD::answer_to_connection(MHD_Connection *connection, - const char *url, const char *method, - const char *version, const char *upload_data, - size_t *upload_data_size, void **con_cls) +HTTPD::MHD_Result HTTPD::answer_to_connection(MHD_Connection *connection, + const char *url, const char *method, + const char *version, const char *upload_data, + size_t *upload_data_size, void **con_cls) { // See if the URL ends in “.metacube”. HTTPD::Stream::Framing framing; @@ -123,7 +123,7 @@ int HTTPD::answer_to_connection(MHD_Connection *connection, MHD_Response *response = MHD_create_response_from_buffer( contents.size(), &contents[0], MHD_RESPMEM_MUST_COPY); MHD_add_response_header(response, "Content-type", "text/plain"); - int ret = MHD_queue_response(connection, MHD_HTTP_OK, response); + MHD_Result ret = MHD_queue_response(connection, MHD_HTTP_OK, response); MHD_destroy_response(response); // Only decreases the refcount; actual free is after the request is done. return ret; } @@ -135,7 +135,7 @@ int HTTPD::answer_to_connection(MHD_Connection *connection, if (endpoints[url].cors_policy == ALLOW_ALL_ORIGINS) { MHD_add_response_header(response, "Access-Control-Allow-Origin", "*"); } - int ret = MHD_queue_response(connection, MHD_HTTP_OK, response); + MHD_Result ret = MHD_queue_response(connection, MHD_HTTP_OK, response); MHD_destroy_response(response); // Only decreases the refcount; actual free is after the request is done. return ret; } @@ -146,7 +146,7 @@ int HTTPD::answer_to_connection(MHD_Connection *connection, MHD_Response *response = MHD_create_response_from_buffer( contents.size(), &contents[0], MHD_RESPMEM_MUST_COPY); MHD_add_response_header(response, "Content-type", "text/plain"); - int ret = MHD_queue_response(connection, MHD_HTTP_NOT_FOUND, response); + MHD_Result ret = MHD_queue_response(connection, MHD_HTTP_NOT_FOUND, response); MHD_destroy_response(response); // Only decreases the refcount; actual free is after the request is done. return ret; } @@ -175,7 +175,7 @@ int HTTPD::answer_to_connection(MHD_Connection *connection, MHD_add_response_header(response, "Content-encoding", "metacube"); } - int ret = MHD_queue_response(connection, MHD_HTTP_OK, response); + MHD_Result ret = MHD_queue_response(connection, MHD_HTTP_OK, response); MHD_destroy_response(response); // Only decreases the refcount; actual free is after the request is done. return ret;