~vcs-imports/simias/trunk

« back to all changes in this revision

Viewing changes to simias/tools/gsoap/gsoap-linux-2.7/extras/ckdb.h

  • Committer: kalidasbala
  • Date: 2007-08-25 12:48:51 UTC
  • Revision ID: vcs-imports@canonical.com-20070825124851-vlfvzun3732ld196
Latest gsoap code update

Show diffs side-by-side

added added

removed removed

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