X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fhttp_response.c;h=41989756e837515be46f96d8cfd52e8fc0dfee8a;hb=c5f6526802d1bf48635941f564552ef059dbc1f4;hp=c3fe6c8e05325fcda0045ffed469feead2127c90;hpb=1b4a582b04fc39d9d4d930acb4d0803bdedfb32e;p=deb_shairplay.git diff --git a/src/lib/http_response.c b/src/lib/http_response.c index c3fe6c8..4198975 100644 --- a/src/lib/http_response.c +++ b/src/lib/http_response.c @@ -1,12 +1,28 @@ +/** + * 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 #include #include #include #include "http_response.h" +#include "compat.h" struct http_response_s { int complete; + int disconnect; char *data; int data_size; @@ -121,6 +137,22 @@ http_response_finish(http_response_t *response, const char *data, int datalen) response->complete = 1; } +void +http_response_set_disconnect(http_response_t *response, int disconnect) +{ + assert(response); + + response->disconnect = !!disconnect; +} + +int +http_response_get_disconnect(http_response_t *response) +{ + assert(response); + + return response->disconnect; +} + const char * http_response_get_data(http_response_t *response, int *datalen) {