Skip to content

Commit 0167a78

Browse files
committed
Add ssl_cafile/ssl_capath options to PORT_OPTIONS, remove max_concurrency option from COROUTINE_OPTIONS.
1 parent 8534d98 commit 0167a78

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/core/Server/Helper.php

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ class Helper
111111
'output_buffer_size' => true,
112112
'buffer_output_size' => true,
113113
'message_queue_key' => true,
114-
'init_arguments' => true,
115114
'bootstrap' => true,
115+
'init_arguments' => true,
116116
];
117117

118118
public const PORT_OPTIONS = [
@@ -158,6 +158,8 @@ class Helper
158158
'ssl_verify_peer' => true,
159159
'ssl_allow_self_signed' => true,
160160
'ssl_client_cert_file' => true,
161+
'ssl_cafile' => true,
162+
'ssl_capath' => true,
161163
'ssl_verify_depth' => true,
162164
'ssl_prefer_server_ciphers' => true,
163165
'ssl_ciphers' => true,
@@ -171,6 +173,9 @@ class Helper
171173
'aio_worker_num' => true,
172174
'aio_max_wait_time' => true,
173175
'aio_max_idle_time' => true,
176+
'iouring_entries' => true,
177+
'iouring_workers' => true,
178+
'iouring_flag' => true,
174179
'enable_signalfd' => true,
175180
'wait_signal' => true,
176181
'dns_cache_refresh_time' => true,
@@ -181,9 +186,6 @@ class Helper
181186
'dns_lookup_random' => true,
182187
'use_async_resolver' => true,
183188
'enable_coroutine' => true,
184-
'iouring_entries' => true,
185-
'iouring_workers' => true,
186-
'iouring_flag' => true,
187189
];
188190

189191
public const COROUTINE_OPTIONS = [
@@ -197,7 +199,6 @@ class Helper
197199
'name_resolver' => true,
198200
'dns_cache_expire' => true,
199201
'dns_cache_capacity' => true,
200-
'max_concurrency' => true,
201202
];
202203

203204
public const HELPER_OPTIONS = [

0 commit comments

Comments
 (0)