From 07504511032443ae5d6fa5740a87d60683fbf55d Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 26 Apr 2023 17:34:50 +0200 Subject: update to 5.0.3 use system libnghttp2 drop patch merged upstream fix use of system headers with system libnghttp2 using patch from https://github.com/swoole/swoole-src/pull/5038 build out of sources tree --- REFLECTION | 29 +++++++++++++++++++++-------- 1 file changed, 21 insertions(+), 8 deletions(-) (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION index b26acdd..50ec5f4 100644 --- a/REFLECTION +++ b/REFLECTION @@ -1,4 +1,4 @@ -Extension [ extension #107 swoole version 5.0.2 ] { +Extension [ extension #107 swoole version 5.0.3 ] { - Dependencies { Dependency [ json (Required) ] @@ -28,12 +28,12 @@ Extension [ extension #107 swoole version 5.0.2 ] { } } - - Constants [403] { - Constant [ string SWOOLE_VERSION ] { 5.0.2 } - Constant [ int SWOOLE_VERSION_ID ] { 50002 } + - Constants [406] { + Constant [ string SWOOLE_VERSION ] { 5.0.3 } + Constant [ int SWOOLE_VERSION_ID ] { 50003 } Constant [ int SWOOLE_MAJOR_VERSION ] { 5 } Constant [ int SWOOLE_MINOR_VERSION ] { 0 } - Constant [ int SWOOLE_RELEASE_VERSION ] { 2 } + Constant [ int SWOOLE_RELEASE_VERSION ] { 3 } Constant [ string SWOOLE_EXTRA_VERSION ] { } Constant [ bool SWOOLE_DEBUG ] { } Constant [ bool SWOOLE_HAVE_COMPRESSION ] { 1 } @@ -156,6 +156,7 @@ Extension [ extension #107 swoole version 5.0.2 ] { Constant [ int SWOOLE_ERROR_HTTP_INVALID_PROTOCOL ] { 7102 } Constant [ int SWOOLE_ERROR_HTTP_PROXY_HANDSHAKE_FAILED ] { 7103 } Constant [ int SWOOLE_ERROR_HTTP_PROXY_BAD_RESPONSE ] { 7104 } + Constant [ int SWOOLE_ERROR_HTTP_CONFLICT_HEADER ] { 7105 } Constant [ int SWOOLE_ERROR_WEBSOCKET_BAD_CLIENT ] { 8501 } Constant [ int SWOOLE_ERROR_WEBSOCKET_BAD_OPCODE ] { 8502 } Constant [ int SWOOLE_ERROR_WEBSOCKET_UNCONNECTED ] { 8503 } @@ -252,6 +253,8 @@ Extension [ extension #107 swoole version 5.0.2 ] { Constant [ int SWOOLE_SEM ] { 4 } Constant [ int SWOOLE_RWLOCK ] { 1 } Constant [ int SWOOLE_SPINLOCK ] { 5 } + Constant [ int SWOOLE_MSGQUEUE_ORIENT ] { 1 } + Constant [ int SWOOLE_MSGQUEUE_BALANCE ] { 2 } Constant [ int SWOOLE_TIMER_MIN_MS ] { 1 } Constant [ float SWOOLE_TIMER_MIN_SEC ] { 0.001 } Constant [ int SWOOLE_TIMER_MAX_MS ] { 9223372036854775807 } @@ -1829,7 +1832,7 @@ Extension [ extension #107 swoole version 5.0.2 ] { Property [ public $workers = NULL ] } - - Methods [11] { + - Methods [12] { Method [ public method __construct ] { - Parameters [4] { @@ -1889,6 +1892,15 @@ Extension [ extension #107 swoole version 5.0.2 ] { - Return [ bool ] } + Method [ public method sendMessage ] { + + - Parameters [2] { + Parameter #0 [ string $data ] + Parameter #1 [ int $dst_worker_id ] + } + - Return [ bool ] + } + Method [ public method detach ] { - Parameters [0] { @@ -7697,7 +7709,7 @@ Extension [ extension #107 swoole version 5.0.2 ] { - Static methods [0] { } - - Properties [18] { + - Properties [19] { Property [ private $onConnect = NULL ] Property [ private $onReceive = NULL ] Property [ private $onClose = NULL ] @@ -7705,10 +7717,11 @@ Extension [ extension #107 swoole version 5.0.2 ] { Property [ private $onBufferFull = NULL ] Property [ private $onBufferEmpty = NULL ] Property [ private $onRequest = NULL ] - Property [ private $onHandShake = NULL ] + Property [ private $onHandshake = NULL ] Property [ private $onOpen = NULL ] Property [ private $onMessage = NULL ] Property [ private $onDisconnect = NULL ] + Property [ private $onBeforeHandshakeResponse = NULL ] Property [ public $host = NULL ] Property [ public $port = 0 ] Property [ public $type = 0 ] -- cgit