亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? cookies.c

?? 著名的手機瀏覽器開源代碼
?? C
?? 第 1 頁 / 共 3 頁
字號:
/* * File: cookies.c * * Copyright 2001 Lars Clausen   <lrclause@cs.uiuc.edu> *                J鰎gen Viksell <jorgen.viksell@telia.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. *//* Handling of cookies takes place here. * This implementation aims to follow RFC 2965: * http://www.cis.ohio-state.edu/cs/Services/rfc/rfc-text/rfc2965.txt */#ifndef DISABLE_COOKIES#include <sys/types.h>#include <sys/stat.h>#include <sys/file.h>#include <fcntl.h>#include <stdlib.h>#include <stdio.h>#include <time.h>       /* for time() and time_t */#include <ctype.h>#include "msg.h"#include "IO/Url.h"#include "misc.h"#include "list.h"#include "cookies.h"#define DEBUG_LEVEL 8#include "debug.h"/* The maximum length of a line in the cookie file */#define LINE_MAXLEN 4096typedef enum {   COOKIE_ACCEPT,   COOKIE_ACCEPT_SESSION,   COOKIE_DENY} CookieControlAction;typedef struct {   CookieControlAction action;   char *domain;} CookieControl;typedef struct {   char *name;   char *value;   char *domain;   char *path;   time_t expires_at;   guint version;   char *comment;   char *comment_url;   gboolean secure;   gboolean session_only;   GList *ports;} CookieData_t;/* Hashtable indexed by domain, each value is a set of cookies for * that domain. */static GHashTable *cookies;/* Variables for access control */static CookieControl *ccontrol = NULL;static int num_ccontrol = 0;static int num_ccontrol_max = 1;static CookieControlAction default_action = COOKIE_DENY;static gboolean disabled;static FILE *file_stream;static FILE *Cookies_fopen(const char *file, gchar *init_str);static CookieControlAction Cookies_control_check(const DilloUrl *url);static CookieControlAction Cookies_control_check_domain(const char *domain);static int Cookie_control_init(void);static void Cookies_parse_ports(const DilloUrl *set_url, CookieData_t *cookie,                                const char *port_str);static char *Cookies_build_ports_str(CookieData_t *cookie);static char *Cookies_strip_path(const char *path);static void Cookies_add_cookie(CookieData_t *cookie);static void Cookies_remove_cookie(CookieData_t *cookie);static gint Cookies_equals(gconstpointer a, gconstpointer b);/* * Return a file pointer. If the file doesn't exist, try to create it, * with the optional 'init_str' as its content. */static FILE *Cookies_fopen(const char *filename, gchar *init_str){   FILE *F_in;   int fd;   if ((F_in = fopen(filename, "r+")) == NULL) {      /* Create the file */      fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR);      if (fd != -1) {         if (init_str)            write(fd, init_str, strlen(init_str));         close(fd);         DEBUG_MSG(10, "Cookies: Created file: %s\n", filename);         F_in = Cookies_fopen(filename, NULL);      } else {         DEBUG_MSG(10, "Cookies: Could not create file: %s!\n", filename);      }   }   /* set close on exec */   fcntl(fileno(F_in), F_SETFD, FD_CLOEXEC | fcntl(fileno(F_in), F_GETFD));   return F_in;}static void Cookies_free_cookie(CookieData_t *cookie){   g_free(cookie->name);   g_free(cookie->value);   g_free(cookie->domain);   g_free(cookie->path);   g_free(cookie->comment);   g_free(cookie->comment_url);   g_list_free(cookie->ports);   g_free(cookie);}/* * Initialize the cookies module * (The 'disabled' variable is writable only within a_Cookies_init) */void a_Cookies_init(){   CookieData_t *cookie;   char *filename;   char line[LINE_MAXLEN];#ifndef HAVE_LOCKF   struct flock lck;#endif   /* Default setting */   disabled = TRUE;   /* Read and parse the cookie control file (cookiesrc) */   if (Cookie_control_init() != 0) {      DEBUG_MSG(10, "Disabling cookies.\n");      return;   }   /* Get a stream for the cookies file */   filename = a_Misc_prepend_user_home(".dillo/cookies");   file_stream = Cookies_fopen(filename, NULL);   g_free(filename);   if (!file_stream) {      DEBUG_MSG(10, "ERROR: Can't open ~/.dillo/cookies, disabling cookies\n");      return;   }   /* Try to get a lock from the file descriptor */#ifdef HAVE_LOCKF   disabled = (lockf(fileno(file_stream), F_TLOCK, 0) == -1);#else /* POSIX lock */   lck.l_start = 0; /* start at beginning of file */   lck.l_len = 0;  /* lock entire file */   lck.l_type = F_WRLCK;   lck.l_whence = SEEK_SET;  /* absolute offset */   disabled = (fcntl(fileno(file_stream), F_SETLK, &lck) == -1);#endif   if (disabled) {      DEBUG_MSG(10, "The cookies file has a file lock:\n"                    "  disabling cookies in this dillo!\n");      fclose(file_stream);      return;   }   DEBUG_MSG(10, "Enabling cookies as from cookiesrc...\n");   cookies = g_hash_table_new(g_str_hash, g_str_equal);   /* Get all lines in the file */   while (!feof(file_stream)) {      line[0] = '\0';      fgets(line, LINE_MAXLEN, file_stream);      /* Remove leading and trailing whitespaces */      g_strstrip(line);      if (line[0] != '\0') {         /* Would use g_strsplit, but it doesn't give empty trailing pieces.          */         /* Split the row into pieces using a tab as the delimiter.          * pieces[0] The version this cookie was set as (0 / 1)          * pieces[1] The domain name          * pieces[2] A comma separated list of accepted ports          * pieces[3] The path          * pieces[4] Is the cookie unsecure or secure (0 / 1)          * pieces[5] Timestamp of expire date          * pieces[6] Name of the cookie          * pieces[7] Value of the cookie          * pieces[8] Comment          * pieces[9] Comment url          */         CookieControlAction action;         char *piece;         char *line_marker = line;         cookie = g_new0(CookieData_t, 1);         cookie->session_only = FALSE;         piece = d_strsep(&line_marker, "\t");         if (piece != NULL)            cookie->version = strtol(piece, NULL, 10);         cookie->domain  = g_strdup(d_strsep(&line_marker, "\t"));         Cookies_parse_ports(NULL, cookie, d_strsep(&line_marker, "\t"));         cookie->path = g_strdup(d_strsep(&line_marker, "\t"));         piece = d_strsep(&line_marker, "\t");         if (piece != NULL && piece[0] == '1')            cookie->secure = TRUE;         piece = d_strsep(&line_marker, "\t");         if (piece != NULL)            cookie->expires_at = (time_t) strtol(piece, NULL, 10);         cookie->name = g_strdup(d_strsep(&line_marker, "\t"));         cookie->value = g_strdup(d_strsep(&line_marker, "\t"));         cookie->comment = g_strdup(d_strsep(&line_marker, "\t"));         cookie->comment_url = g_strdup(d_strsep(&line_marker, "\t"));         if (!cookie->domain || cookie->domain[0] == '\0' ||             !cookie->path || cookie->path[0] != '/' ||             !cookie->name || cookie->name[0] == '\0' ||             !cookie->value) {            DEBUG_MSG(8, "Malformed line in cookies file!\n");            Cookies_free_cookie(cookie);            continue;         }         action = Cookies_control_check_domain(cookie->domain);         if (action == COOKIE_DENY) {            Cookies_free_cookie(cookie);            continue;         } else if (action == COOKIE_ACCEPT_SESSION) {            cookie->session_only = TRUE;         }         /* Save cookie in memory */         Cookies_add_cookie(cookie);      }   }}/* * Save the cookies and remove them from the hash table */static gboolean Cookies_freeall_cb(gpointer key,                                   gpointer value,                                   gpointer data){   CookieData_t *cookie;   GList *domain_cookies = value;   char *ports_str;   for (; domain_cookies; domain_cookies = g_list_next(domain_cookies)) {      cookie = domain_cookies->data;      if (!cookie->session_only) {         ports_str = Cookies_build_ports_str(cookie);         fprintf(file_stream, "%d\t%s\t%s\t%s\t%d\t%ld\t%s\t%s\t%s\t%s\n",                 cookie->version,                 cookie->domain,                 ports_str,                 cookie->path,                 cookie->secure ? 1 : 0,                 (long)cookie->expires_at,                 cookie->name,                 cookie->value,                 (cookie->comment) ? cookie->comment : "",                 (cookie->comment_url) ? cookie->comment_url : "");         g_free(ports_str);      }      Cookies_free_cookie(cookie);   }   g_list_free(value);   g_free(key);   /* Return TRUE to tell GLIB to free this key from the hash table */   return TRUE;}/* * Flush cookies to disk and free all the memory allocated. */void a_Cookies_freeall(){   int fd;#ifndef HAVE_LOCKF   struct flock lck;#endif   if (disabled)      return;   rewind(file_stream);   fd = fileno(file_stream);   ftruncate(fd, 0);   g_hash_table_foreach_remove(cookies, Cookies_freeall_cb, NULL);#ifdef HAVE_LOCKF   lockf(fd, F_ULOCK, 0);#else  /* POSIX file lock */   lck.l_start = 0; /* start at beginning of file */   lck.l_len = 0;  /* lock entire file */   lck.l_type = F_UNLCK;   lck.l_whence = SEEK_SET;  /* absolute offset */   fcntl(fileno(file_stream), F_SETLKW, &lck);#endif   fclose(file_stream);}static char *months[] ={ "",  "Jan", "Feb", "Mar",  "Apr", "May", "Jun",  "Jul", "Aug", "Sep",  "Oct", "Nov", "Dec"};/* * Take a months name and return a number between 1-12. * E.g. 'April' -> 4 */static int Cookies_get_month(const char *month_name){   int i;   for (i = 1; i <= 12; i++) {      if (!g_strncasecmp(months[i], month_name, 3))         return i;   }   return 0;}/* * Return a local timestamp from a GMT date string * Accept: RFC-1123 | RFC-850 | ANSI asctime * (return 0 on malformed date string syntax) */static time_t Cookies_create_timestamp(const char *expires){   time_t ret;   int day, month, year, hour, minutes, seconds;   gchar *cp;   gchar *E_msg =      "Cookies: Expire date is malformed!\n"      " (should be RFC-1123 | RFC-850 | ANSI asctime)\n"      " Ignoring cookie...\n";   if (!(cp = strchr(expires, ',')) && strlen(expires) == 24) {      /* Looks like ANSI asctime format... */      cp = (gchar *)expires;      day = strtol(cp + 8, NULL, 10);       /* day */      month = Cookies_get_month(cp + 4);    /* month */      year = strtol(cp + 20, NULL, 10);     /* year */      hour = strtol(cp + 11, NULL, 10);     /* hour */      minutes = strtol(cp + 14, NULL, 10);  /* minutes */      seconds = strtol(cp + 17, NULL, 10);  /* seconds */   } else if (cp && ((cp - expires == 3 && strlen(cp) == 26) ||                     (cp - expires > 5  && strlen(cp) == 24))) {      /* RFC-1123 | RFC-850 format */      day = strtol(cp + 2, NULL, 10);      month = Cookies_get_month(cp + 5);      year = strtol(cp + 9, &cp, 10);      /* todo: tricky, because two digits for year IS ambiguous! */      year += (year < 70) ? 2000 : ((year < 100) ? 1900 : 0);      hour = strtol(cp + 1, NULL, 10);      minutes = strtol(cp + 4, NULL, 10);      seconds = strtol(cp + 7, NULL, 10);   } else {      DEBUG_MSG(5, E_msg);      return (time_t) 0;   }   /* Error checks  --this may be overkill */   if (!(day > 0 && day < 32 && month > 0 && month && year > 1970 &&         hour >= 0 && hour < 24 && minutes >= 0 && minutes < 60 &&         seconds >= 0 && seconds < 60)) {      DEBUG_MSG(5, E_msg);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
wwwwxxxxx欧美| 在线亚洲高清视频| 久久亚洲综合色一区二区三区| 偷拍与自拍一区| 日韩欧美精品三级| 久国产精品韩国三级视频| 久久久.com| 一本久久a久久免费精品不卡| 亚洲欧美色图小说| 欧美日韩免费观看一区二区三区| 日韩高清在线一区| 欧美精品一区二区三区四区| 国产传媒一区在线| 一区二区三区在线视频观看| 欧美日韩国产综合草草| 久久精品国产一区二区| 国产午夜精品在线观看| 91在线云播放| 午夜精品久久久久久久99樱桃| 日韩午夜激情视频| 懂色av噜噜一区二区三区av| 亚洲欧美日本韩国| 欧美一二三四在线| 99麻豆久久久国产精品免费| 亚洲一区日韩精品中文字幕| 精品国产一区二区三区久久影院| 成人网页在线观看| 婷婷久久综合九色综合伊人色| 日韩一级二级三级精品视频| 成人国产一区二区三区精品| 亚洲电影你懂得| 亚洲国产成人午夜在线一区| 欧美日韩亚州综合| 国产精品一区二区视频| 婷婷成人综合网| 国产精品乱码一区二区三区软件| 欧美日韩精品一区二区三区蜜桃| 国产乱对白刺激视频不卡| 午夜激情久久久| 国产精品每日更新在线播放网址| 欧美日韩成人综合在线一区二区| 国产精品99精品久久免费| 亚洲不卡在线观看| 亚洲私人黄色宅男| 久久影院视频免费| 欧美一区二区在线观看| 色狠狠色噜噜噜综合网| 国产做a爰片久久毛片| 亚洲一区二区三区爽爽爽爽爽 | 中文字幕免费不卡| 欧美一区二区三区色| 91浏览器打开| 成人综合在线网站| 麻豆国产欧美日韩综合精品二区| 一区二区国产视频| 中文字幕中文字幕中文字幕亚洲无线 | 777久久久精品| 色综合网色综合| 国产黄色精品视频| 精品综合久久久久久8888| 午夜欧美一区二区三区在线播放| 国产精品白丝在线| 国产精品久久毛片av大全日韩| 精品剧情在线观看| 91精品国产麻豆| 国产jizzjizz一区二区| 亚洲综合一二区| 国产精品二区一区二区aⅴ污介绍| 欧美成人aa大片| 日韩欧美国产麻豆| 在线成人av网站| 欧美精品第1页| 337p亚洲精品色噜噜噜| 欧美影视一区在线| 精品视频在线看| 欧美午夜在线一二页| 欧美主播一区二区三区| 欧美综合在线视频| 欧美日韩国产成人在线免费| 欧美日韩在线播放三区四区| 色婷婷久久久综合中文字幕| 日本乱码高清不卡字幕| 欧美午夜视频网站| 欧美人与禽zozo性伦| 欧美日韩激情一区| 91麻豆精品国产91久久久资源速度 | av一区二区三区在线| 福利视频网站一区二区三区| 成人激情小说网站| 色综合久久九月婷婷色综合| 色一区在线观看| 欧美日韩亚洲综合| 欧美电视剧在线观看完整版| 精品国一区二区三区| 国产精品视频看| 亚洲精品日韩一| 视频一区国产视频| 国产在线一区观看| 成人一区二区在线观看| 91老师片黄在线观看| 在线成人av网站| 国产网站一区二区| 亚洲美女在线一区| 视频一区二区不卡| 国产成人无遮挡在线视频| 成人精品高清在线| 欧美精品一二三| 久久久亚洲精华液精华液精华液| 国产精品久久午夜夜伦鲁鲁| 亚洲一区二区三区爽爽爽爽爽 | 欧美大片一区二区| 国产精品午夜在线观看| 一区二区三区日韩精品| 日韩成人av影视| 北条麻妃一区二区三区| 91麻豆精品91久久久久同性| 久久蜜桃香蕉精品一区二区三区| 国产精品久久久久精k8| 日韩电影在线观看网站| 成人免费高清在线观看| 欧美日韩国产天堂| 国产精品久线观看视频| 日韩成人一区二区三区在线观看| 丁香婷婷综合激情五月色| 欧美日韩极品在线观看一区| 日本一区二区成人在线| 日韩精品免费专区| 色综合久久久久久久| 久久人人爽人人爽| 亚州成人在线电影| 成人精品亚洲人成在线| 欧美一二三区精品| 亚洲欧美一区二区三区孕妇| 国产一区91精品张津瑜| 欧美日韩午夜影院| 中文字幕一区三区| 国产最新精品免费| 日韩亚洲欧美成人一区| 亚洲一区二区四区蜜桃| 成人18精品视频| 精品久久99ma| 日韩和的一区二区| 91国产免费看| 国产精品高潮呻吟| 成人国产精品免费观看| 久久夜色精品国产欧美乱极品| 天天色 色综合| 欧洲亚洲国产日韩| 亚洲一区二区视频| 色嗨嗨av一区二区三区| 日韩理论片网站| 99精品在线免费| 国产精品久久久久永久免费观看| 激情综合网最新| 日韩欧美国产一区二区三区| 亚洲成人免费看| 欧美日韩精品一区二区在线播放| 亚洲精品国产一区二区精华液| 不卡av电影在线播放| 国产欧美一区二区三区网站| 国产一区中文字幕| 久久综合久久综合九色| 精品一区二区久久| 2021中文字幕一区亚洲| 激情深爱一区二区| 亚洲精品一区在线观看| 精品一区中文字幕| 久久久久久免费毛片精品| 精品一区二区三区蜜桃| 久久嫩草精品久久久久| 国产91精品久久久久久久网曝门 | 久久久99久久| 成人激情文学综合网| 国产精品久久久久四虎| 成人高清免费观看| 中文字幕亚洲区| 一本色道a无线码一区v| 亚洲午夜国产一区99re久久| 欧美日韩免费观看一区三区| 日韩成人免费看| 久久久久国产精品麻豆| av在线免费不卡| 亚洲高清不卡在线| 欧美一区二区三区在线电影 | 亚洲国产精品成人综合色在线婷婷 | 4hu四虎永久在线影院成人| 免费成人在线视频观看| 精品国产麻豆免费人成网站| 国产裸体歌舞团一区二区| 中文在线资源观看网站视频免费不卡 | 国产精品成人免费精品自在线观看| www.亚洲色图.com| 亚洲一区二区三区免费视频| 日韩亚洲欧美高清| 波多野结衣中文字幕一区| 亚洲va国产va欧美va观看| 精品国产亚洲在线| 99re8在线精品视频免费播放| 亚洲成人av中文| 久久久久久97三级|