-
Notifications
You must be signed in to change notification settings - Fork 10
/
php_tokyo_tyrant_failover.h
38 lines (31 loc) · 1.77 KB
/
php_tokyo_tyrant_failover.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
/*
+----------------------------------------------------------------------+
| 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_FAILOVER_H_
# define _PHP_TOKYO_TYRANT_FAILOVER_H_
#define PHP_TT_INCR 1
#define PHP_TT_DECR 2
#define PHP_TT_GET 3
long php_tt_server_fail(int op, char *host, int port TSRMLS_DC);
void php_tt_server_fail_incr(char *host, int port TSRMLS_DC);
void php_tt_server_fail_decr(char *host, int port TSRMLS_DC);
zend_bool php_tt_server_ok(char *host, int port TSRMLS_DC);
void php_tt_health_check(TSRMLS_D);
#endif