OSDN Git Service

* add _chxj_nc parameter.
[modchxj/mod_chxj.git] / include / chxj_cookie.h
1 /*
2  * Copyright (C) 2005 QSDN,Inc. All rights reserved.
3  * Copyright (C) 2005 Atsushi Konno All rights reserved.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 #ifndef __CHXJ_COOKIE_H__
18 #define __CHXJ_COOKIE_H__
19
20 #include "mod_chxj.h"
21 #include "apr_file_io.h"
22 #include "apr_tables.h"
23
24 #define CHXJ_COOKIE_PARAM  "_chxj_cc"
25 #define CHXJ_COOKIE_NOUPDATE_PARAM "_chxj_nc"
26
27 #define DEFAULT_COOKIE_DB_DIR "/tmp"
28 #define COOKIE_DB_NAME        "cookie.db"
29 #define COOKIE_DB_LOCK_NAME   "cookie.db.lock"
30
31 #define COOKIE_EXPIRE_DB_NAME "cookie.expire.db"
32 #define COOKIE_EXPIRE_DB_LOCK_NAME   "cookie.expire.db.lock"
33
34 #define REFERER_COOKIE_KEY "CHXJ_REFER"
35
36 /* 
37  * default cookie timeout is 30 minute
38  */
39 #define DEFAULT_COOKIE_TIMEOUT (1800)
40
41 typedef struct cookie_t cookie_t;
42
43
44 struct cookie_t {
45   char*               cookie_id;
46   apr_array_header_t* cookie_headers;
47 };
48
49
50 extern cookie_t* chxj_save_cookie(
51   request_rec *r);
52
53 extern char*     chxj_add_cookie_parameter(
54   request_rec* r, 
55   char*        value, 
56   cookie_t*    cookie);
57
58 extern int chxj_cookie_check_host(
59   request_rec* r, 
60   char*        value);
61
62 extern cookie_t* chxj_load_cookie(
63   request_rec* r, 
64   char*        cookie_id);
65
66 extern apr_file_t* chxj_cookie_db_lock(
67   request_rec* r);
68
69 extern void chxj_cookie_db_unlock(
70   request_rec* r, 
71   apr_file_t*  file);
72
73 extern void chxj_delete_cookie(
74   request_rec* r, 
75   char*        cookie_id);
76
77 extern char* chxj_cookie_db_name_create(
78   request_rec* r, 
79   const char*  dir);
80
81 extern char* chxj_cookie_db_lock_name_create(
82   request_rec* r, 
83   const char*  dir);
84
85 extern char* chxj_cookie_expire_db_lock_name_create(
86   request_rec* r, 
87   const char*  dir);
88
89 extern char* chxj_cookie_expire_db_name_create(
90   request_rec* r, 
91   const char*  dir);
92
93 extern apr_file_t* chxj_cookie_expire_db_lock(
94   request_rec* r);
95
96 extern void chxj_cookie_expire_db_unlock(
97   request_rec* r, 
98   apr_file_t*  file);
99
100 extern void chxj_save_cookie_expire(
101   request_rec* r, 
102   cookie_t*    cookie);
103
104 extern void chxj_delete_cookie_expire(
105   request_rec* r, 
106   char*        cookie_id);
107
108 extern void chxj_cookie_expire_gc(
109   request_rec* r);
110
111 cookie_t* chxj_update_cookie(
112   request_rec* r, 
113   cookie_t*    old_cookie);
114
115 #endif
116 /*
117  * vim:ts=2 et
118  */