-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathphp_tokyo_tyrant_session.h
51 lines (42 loc) · 2.29 KB
/
php_tokyo_tyrant_session.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
+----------------------------------------------------------------------+
| PHP Version 5 / Tokyo tyrant |
+----------------------------------------------------------------------+
| Copyright (c) 2009-2010 Mikko Koppanen |
+----------------------------------------------------------------------+
| This source file is dual-licensed. |
| It is available under the terms of New BSD License that is bundled |
| with this package in the file LICENSE and available under the terms |
| of PHP license version 3.01. PHP license is bundled with this |
| package in the file LICENSE and can be obtained through the |
| world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Mikko Kopppanen <[email protected]> |
+----------------------------------------------------------------------+
*/
#ifndef _PHP_TOKYO_TYRANT_SESSION_H_
# define _PHP_TOKYO_TYRANT_SESSION_H_
#include "php_tokyo_tyrant.h"
#include "php_tokyo_tyrant_private.h"
#include "php_tokyo_tyrant_connection.h"
#include "php_tokyo_tyrant_server_pool.h"
#include "php_tokyo_tyrant_failover.h"
#include "php_tokyo_tyrant_funcs.h"
PS_CREATE_SID_FUNC(tokyo_tyrant);
typedef struct _php_tt_session {
php_tt_server_pool *pool; /* Pool of session servers */
php_tt_conn *conn; /* Connection to the session server */
char *pk; /* Primary key of the session data */
int pk_len; /* pk length */
int idx; /* node where the data is stored at */
char *sess_rand; /* The session id part */
int sess_rand_len; /* session id length */
char *checksum; /* Session validation checksum */
int checksum_len; /* Checksum length */
zend_bool remap; /* If 1 create_sid will remap the session to a new server */
} php_tt_session;
#endif