]> git.sesse.net Git - nageru/blobdiff - shared/httpd.cpp
Unbreak compilation with libmicrohttpd 0.9.71.
[nageru] / shared / httpd.cpp
index 74d0c26d72b1252ae1485490ab2daef41725211c..006ba6599cf7fc7af46a36c4203c19ac1649a5b2 100644 (file)
@@ -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;