1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-28 03:06:20 -04:00

Add cookies file format description to cookies.h.

This clear description was provided by Witek on IRC.
This commit is contained in:
Laurent MONIN 2007-10-18 09:26:43 +02:00
parent 8f02417036
commit f5c3ba2e99

View File

@ -1,6 +1,15 @@
#ifndef EL__COOKIES_COOKIES_H
#define EL__COOKIES_COOKIES_H
/* ELinks cookies file format:
* NAME\tVALUE\tSERVER\tPATH\tDOMAIN\tEXPIRES\tSECURE\n
*
* \t is a tabulator
* \n is a newline
* EXPIRES is the number of seconds since 1970-01-01 00:00:00 UTC.
* SECURE is 0 for http and 1 for https.
*/
#include "main/module.h"
#include "main/object.h"
#include "protocol/uri.h"