annotate GEMBASSY-1.0.3/gsoap/extras/ckdb.h @ 0:8300eb051bea draft

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