X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fhttpd.h;h=fc184e1508079101c48f3367bdae33a2a5da29c9;hb=06582fecd198c26f1970a2e779e7bd9519e60cd2;hp=08062eddff8bfc685aeebcb33bd4f8a8f5c7fddf;hpb=1b4a582b04fc39d9d4d930acb4d0803bdedfb32e;p=deb_shairplay.git diff --git a/src/lib/httpd.h b/src/lib/httpd.h index 08062ed..fc184e1 100644 --- a/src/lib/httpd.h +++ b/src/lib/httpd.h @@ -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. + */ + #ifndef HTTPD_H #define HTTPD_H @@ -16,7 +30,9 @@ struct httpd_callbacks_s { typedef struct httpd_callbacks_s httpd_callbacks_t; -httpd_t *httpd_init(logger_t *logger, httpd_callbacks_t *callbacks, int max_connections, int use_rtsp); +httpd_t *httpd_init(logger_t *logger, httpd_callbacks_t *callbacks, int max_connections); + +int httpd_is_running(httpd_t *httpd); int httpd_start(httpd_t *httpd, unsigned short *port); void httpd_stop(httpd_t *httpd);