forked from mkoppanen/php-tokyo_tyrant
-
Notifications
You must be signed in to change notification settings - Fork 1
/
php_tokyo_tyrant_server_pool.h
49 lines (37 loc) · 1.99 KB
/
php_tokyo_tyrant_server_pool.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
/*
+----------------------------------------------------------------------+
| PHP Version 5 / Tokyo tyrant |
+----------------------------------------------------------------------+
| Copyright (c) 2009 Mikko Koppanen |
+----------------------------------------------------------------------+
| This source file is subject to version 3.0 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_0.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. |
+----------------------------------------------------------------------+
| Authors: Mikko Koppanen <[email protected]> |
+----------------------------------------------------------------------+
*/
#ifndef _PHP_TOKYO_TYRANT_SERVER_POOL_H_
# define _PHP_TOKYO_TYRANT_SERVER_POOL_H_
typedef struct _php_tt_server {
char *host;
int port;
} php_tt_server;
typedef struct _php_tt_server_pool {
php_tt_server **servers;
int num_servers;
} php_tt_server_pool;
php_tt_server *php_tt_server_init(char *host, int port TSRMLS_DC);
void php_tt_server_deinit(php_tt_server *server TSRMLS_DC);
php_tt_server_pool *php_tt_pool_init(TSRMLS_D);
void php_tt_pool_append(php_tt_server_pool *pool, php_tt_server *server TSRMLS_DC);
void php_tt_pool_append2(php_tt_server_pool *pool, char *host, int port TSRMLS_DC);
void php_tt_pool_deinit(php_tt_server_pool *pool TSRMLS_DC);
php_tt_server_pool *php_tt_pool_init2(const char *save_path TSRMLS_DC);
int php_tt_pool_map(php_tt_server_pool *pool, char *key TSRMLS_DC);
php_tt_server *php_tt_pool_get_server(php_tt_server_pool *pool, int idx TSRMLS_DC);
#endif