Mercurial > dillo_port1.3
view src/cookies.h @ 1958:7860a3051241
Fix for endless loop with META refresh and same URL or no URL at all
author | Jorge Arellano Cid <jcid@dillo.org> |
---|---|
date | Fri, 15 Apr 2011 14:08:53 -0300 |
parents | e247df789bdc |
children |
line wrap: on
line source
#ifndef __COOKIES_H__ #define __COOKIES_H__ #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ #ifdef DISABLE_COOKIES # define a_Cookies_get_query(url) dStrdup("") # define a_Cookies_set() ; # define a_Cookies_init() ; # define a_Cookies_freeall() ; #else char *a_Cookies_get_query(const DilloUrl *request_url); void a_Cookies_set(Dlist *cookie_string, const DilloUrl *set_url, const char *server_date); void a_Cookies_init( void ); void a_Cookies_freeall( void ); #endif #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* !__COOKIES_H__ */