diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2004-03-31 07:42:49 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2004-03-31 07:42:49 +0000 |
commit | 8651b1e6267bc34c0dfb27088d893e44cfe8a6d3 (patch) | |
tree | 7b1bed25903b90b889ede35819857586ecb11ee2 /src/input/http_helper.h | |
parent | 748f11a26888f0dd9e9f74fa2d1f16a563503f6b (diff) | |
download | xine-lib-8651b1e6267bc34c0dfb27088d893e44cfe8a6d3.tar.gz xine-lib-8651b1e6267bc34c0dfb27088d893e44cfe8a6d3.tar.bz2 |
New config option - list of domains without proxy.
Add help strings into HTTP proxy options.
CVS patchset: 6322
CVS date: 2004/03/31 07:42:49
Diffstat (limited to 'src/input/http_helper.h')
-rw-r--r-- | src/input/http_helper.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/input/http_helper.h b/src/input/http_helper.h index a89f93c3b..0c63f4a14 100644 --- a/src/input/http_helper.h +++ b/src/input/http_helper.h @@ -19,9 +19,12 @@ * * URL helper functions * - * $Id: http_helper.h,v 1.1 2003/11/26 08:09:58 tmattern Exp $ + * $Id: http_helper.h,v 1.2 2004/03/31 07:42:50 valtri Exp $ */ +#ifndef HTTP_HELPER_H +#define HTTP_HELPER_H + /* * url parser * {proto}://{user}:{password}@{host}:{port}{uri} @@ -31,8 +34,7 @@ * 0 invalid url * 1 valid url */ -#ifndef HTTP_HELPER_H -#define HTTP_HELPER_H int _x_parse_url (char *url, char **proto, char** host, int *port, char **user, char **password, char **uri); + #endif /* HTTP_HELPER_H */ |