about summary refs log blame commit diff stats
path: root/src/LYCookie.h
blob: 59e7ab79b5213341341d7c5344ffb7af68acc0c1 (plain) (tree)
1
2
3
4
5
6
7
8
9


                   
                 
                    

      

                   




















                          


                                                                       

                                            



                                          
                                

                                   
                                  
                                       

                                    

                                 
                                   
                                      
                                  
                                      
                                     

                        
#ifndef LYCOOKIES_H
#define LYCOOKIES_H

#ifndef HTUTILS_H
#include <HTUtils.h>
#endif

#include <HTList.h>

typedef enum {
    ACCEPT_ALWAYS = 0
    , REJECT_ALWAYS
    , QUERY_USER
} behaviour_t;

typedef enum {
    INVCHECK_QUERY = 0
    , INVCHECK_STRICT
    , INVCHECK_LOOSE
} invcheck_behaviour_t;

typedef enum {
    FLAG_ACCEPT_ALWAYS = 0
    , FLAG_REJECT_ALWAYS
    , FLAG_QUERY_USER
    , FLAG_FROM_FILE
    , FLAG_INVCHECK_QUERY
    , FLAG_INVCHECK_STRICT
    , FLAG_INVCHECK_LOOSE
} cookie_domain_flags;

struct _domain_entry {
    char *	domain;  /* Domain for which these cookies are valid */
    behaviour_t	bv;
    invcheck_behaviour_t	invcheck_bv;
    HTList *	cookie_list;
};
typedef struct _domain_entry domain_entry;

extern void LYSetCookie PARAMS((
	CONST char *	SetCookie,
	CONST char *	SetCookie2,
	CONST char *	address));
extern char *LYAddCookieHeader PARAMS((
	char *		hostname,
	char *		partialpath,
	int		port,
	BOOL		secure));
extern void LYStoreCookies PARAMS((
	char *		cookie_file));
extern void LYLoadCookies PARAMS((
	char * 		cookie_file));
extern void LYConfigCookies NOPARAMS;

#endif /* LYCOOKIES_H */