ckdb.h
来自「一款开源的soap库」· C头文件 代码 · 共 34 行
H
34 行
/* ckdb.h HTTP cookie database manager. See ckdb.c for more details.The contents of this file are subject to the gSOAP Public License Version 1.0(the "License"); you may not use this file except in compliance with theLicense. You may obtain a copy of the License athttp://www.cs.fsu.edu/~engelen/soaplicense.htmlSoftware distributed under the License is distributed on an "AS IS" basis,WITHOUT WARRANTY OF ANY KIND, either express or implied. See the Licensefor the specific language governing rights and limitations under the License.The Initial Developer of the Original Code is Robert A. van Engelen.Copyright (C) 2000-2002 Robert A. van Engelen. All Rights Reserved.*//* struct cookie must be a mirror image of struct soap_cookie in stdsoap2.h */struct cookie{ struct cookie *next; char *name; char *value; char *domain; char *path; long expire; unsigned int version; short secure; [ short session; /* transient: do not (de)serialize */ short env; /* transient: do not (de)serialize */ short modified; /* transient: do not (de)serialize */ ]};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?