mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-24 15:29:45 +03:00
49ce807e3c
A somewhat better implementation of referrers which no longer sends the referer if the URL schemes don't match. Things to do: 1) Preservation of referer across redirects (see comment in browser.c:284) 2) GUI templates/code for configuration of referer sending (simple on/off toggle only) 3) Make referer sending when fetching objects/stylesheets for a page pay attention to option_send_referer? 4) Handle the case where the referer is in the form of http://moo:foo@mysite.com/ (ie the login details embedded in the referer - not good). svn path=/import/netsurf/; revision=1297
29 lines
893 B
C
29 lines
893 B
C
/*
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
* Licensed under the GNU General Public License,
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
* Copyright 2004 James Bursa <bursa@users.sourceforge.net>
|
|
*/
|
|
|
|
/** \file
|
|
* URL parsing and joining (interface).
|
|
*/
|
|
|
|
#ifndef _NETSURF_UTILS_URL_H_
|
|
#define _NETSURF_UTILS_URL_H_
|
|
|
|
typedef enum {
|
|
URL_FUNC_OK, /**< No error */
|
|
URL_FUNC_NOMEM, /**< Insufficient memory */
|
|
URL_FUNC_FAILED /**< Non fatal error (eg failed to match regex) */
|
|
} url_func_result;
|
|
|
|
void url_init(void);
|
|
url_func_result url_normalize(const char *url, char **result);
|
|
url_func_result url_join(const char *rel, const char *base, char **result);
|
|
url_func_result url_host(const char *url, char **result);
|
|
url_func_result url_scheme(const char *url, char **result);
|
|
url_func_result url_nice(const char *url, char **result);
|
|
|
|
#endif
|