diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-10-26 22:50:52 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-10-26 22:50:52 +0000 |
commit | 799a8c755b1ec87a799f1a18e9ccfea04ef1897c (patch) | |
tree | 54945f533388ebc09ed37e54770cb9fb974e77b0 /src/input/input_http.c | |
parent | 549e07167100fc654422dbaa0b9056162ceac606 (diff) | |
download | xine-lib-799a8c755b1ec87a799f1a18e9ccfea04ef1897c.tar.gz xine-lib-799a8c755b1ec87a799f1a18e9ccfea04ef1897c.tar.bz2 |
timeouts for mms, send progress report events, introduce verbosity engine parameter (not implemented yet), document new plugin loader in changelog
CVS patchset: 3029
CVS date: 2002/10/26 22:50:52
Diffstat (limited to 'src/input/input_http.c')
-rw-r--r-- | src/input/input_http.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/input/input_http.c b/src/input/input_http.c index 0d4e5e696..c5fdb1aa4 100644 --- a/src/input/input_http.c +++ b/src/input/input_http.c @@ -238,7 +238,7 @@ static int http_plugin_parse_url (char *urlbuf, char **user, char **password, } static int http_plugin_basicauth (const char *user, const char *password, - char* dest, int len) { + char* dest, int len) { static char *enctable="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; char *tmp; char *sptr; @@ -296,9 +296,6 @@ static int http_plugin_basicauth (const char *user, const char *password, } static off_t http_plugin_read (input_plugin_t *this_gen, - char *buf, off_t nlen) ; - -static off_t http_plugin_read (input_plugin_t *this_gen, char *buf, off_t nlen) { http_input_plugin_t *this = (http_input_plugin_t *) this_gen; off_t n, num_bytes; |