0
|
1 /*
|
|
2 ckdb.h
|
|
3
|
|
4 HTTP cookie database manager. See ckdb.c for more details.
|
|
5
|
|
6 The contents of this file are subject to the gSOAP Public License
|
|
7 Version 1.0 (the "License"); you may not use this file except in
|
|
8 compliance with the License. You may obtain a copy of the License at
|
|
9 http://www.cs.fsu.edu/~engelen/soaplicense.html Software distributed
|
|
10 under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY
|
|
11 OF ANY KIND, either express or implied. See the License for the
|
|
12 specific language governing rights and limitations under the License.
|
|
13
|
|
14 The Initial Developer of the Original Code is Robert A. van Engelen.
|
|
15 Copyright (C) 2000-2002 Robert A. van Engelen. All Rights Reserved.
|
|
16
|
|
17 */
|
|
18
|
|
19 /* struct cookie must be a mirror image of struct soap_cookie in stdsoap2.h */
|
|
20 struct cookie
|
|
21 { struct cookie *next;
|
|
22 char *name;
|
|
23 char *value;
|
|
24 char *domain;
|
|
25 char *path;
|
|
26 long expire;
|
|
27 unsigned int version;
|
|
28 short secure;
|
|
29 [
|
|
30 short session; /* transient: do not (de)serialize */
|
|
31 short env; /* transient: do not (de)serialize */
|
|
32 short modified; /* transient: do not (de)serialize */
|
|
33 ]
|
|
34 };
|