about summary refs log tree commit diff stats
path: root/build4
Commit message (Expand)AuthorAgeFilesLines
* 5004Kartik Agaram2019-03-141-1/+1
* 4403Kartik Agaram2018-07-251-0/+2
* 4270 - tweak the experimental concurrent builderKartik Agaram2018-06-251-16/+24
* 4253 - support running just a single C testKartik Agaram2018-06-061-0/+1
* 4238Kartik Agaram2018-05-071-3/+4
* 4237Kartik Agaram2018-05-011-4/+4
* 4236 - experimental script for parallel buildingKartik Agaram2018-04-291-0/+284
/* $LynxId: LYCookie.h,v 1.20 2011/06/07 08:29:39 tom Exp $ */
#ifndef LYCOOKIES_H
#define LYCOOKIES_H

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

#include <HTList.h>

#ifdef __cplusplus
extern "C" {
#endif
    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 */
	char *ddomain;		/* Domain without leading "." */
	behaviour_t bv;
	invcheck_behaviour_t invcheck_bv;
	HTList *cookie_list;
    };
    typedef struct _domain_entry domain_entry;

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

#ifdef __cplusplus
}
#endif
#endif				/* LYCOOKIES_H */