[vlc-commits] httpd: Remove obsolete enum
Lyndon Brown
git at videolan.org
Fri Nov 24 08:54:36 CET 2017
vlc | branch: master | Lyndon Brown <jnqnfe at gmail.com> | Wed Aug 16 16:46:39 2017 +0100| [2e65002479e64839c16e65101ebd6e4a50341690] | committer: Jean-Baptiste Kempf
httpd: Remove obsolete enum
Un-named enum contains HTTPD_CLIENT_FILE and HTTPD_CLIENT_STREAM,
which became obsolete in 56ee33a212e60fecf7b0e075b67618e3e4744df2,
replaced with the b_stream_mode boolean.
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2e65002479e64839c16e65101ebd6e4a50341690
---
src/network/httpd.c | 7 -------
1 file changed, 7 deletions(-)
diff --git a/src/network/httpd.c b/src/network/httpd.c
index 3e27406b5c..1ff4f14d60 100644
--- a/src/network/httpd.c
+++ b/src/network/httpd.c
@@ -135,13 +135,6 @@ enum
HTTPD_CLIENT_TLS_HS_OUT
};
-/* mode */
-enum
-{
- HTTPD_CLIENT_FILE, /* default */
- HTTPD_CLIENT_STREAM, /* regulary get data from cb */
-};
-
struct httpd_client_t
{
httpd_url_t *url;
More information about the vlc-commits
mailing list