Do not give IPv4 any special treatment in httpd code
[deb_shairplay.git] / src / lib / http_request.c
index 656ccee644abbe7d1c06fc0697c7bfe0a03be161..694a709722c8503db3a4b6f055dbb54de0ebb57d 100644 (file)
@@ -1,3 +1,17 @@
+/**
+ *  Copyright (C) 2011-2012  Juho Vähä-Herttua
+ *
+ *  This library is free software; you can redistribute it and/or
+ *  modify it under the terms of the GNU Lesser General Public
+ *  License as published by the Free Software Foundation; either
+ *  version 2.1 of the License, or (at your option) any later version.
+ *
+ *  This library is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ *  Lesser General Public License for more details.
+ */
+
 #include <stdlib.h>
 #include <string.h>
 #include <assert.h>
@@ -120,7 +134,7 @@ on_message_complete(http_parser *parser)
 }
 
 http_request_t *
-http_request_init(int numerichost)
+http_request_init(void)
 {
        http_request_t *request;
 
@@ -128,7 +142,7 @@ http_request_init(int numerichost)
        if (!request) {
                return NULL;
        }
-       http_parser_init(&request->parser, HTTP_REQUEST, !!numerichost);
+       http_parser_init(&request->parser, HTTP_REQUEST);
        request->parser.data = request;
 
        request->parser_settings.on_url = &on_url;