Skip to content

Commit bee3f2a

Browse files
committed
#133: Sockets [adding SO_ATTACH_REUSEPORT_CPBF](php/php-src#8062)
1 parent fe7b7f9 commit bee3f2a

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

data/reference/extension/sockets/83/constants.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,20 @@
1818
"name": "UDPLITE_RECV_CSCOV",
1919
"ext_min": "8.3.0alpha1",
2020
"php_min": "8.3.0alpha1"
21+
},
22+
{
23+
"name": "SO_ATTACH_REUSEPORT_CBPF",
24+
"ext_min": "8.3.0alpha1",
25+
"php_min": "8.3.0alpha1"
26+
},
27+
{
28+
"name": "SO_DETACH_FILTER",
29+
"ext_min": "8.3.0alpha1",
30+
"php_min": "8.3.0alpha1"
31+
},
32+
{
33+
"name": "SO_DETACH_BPF",
34+
"ext_min": "8.3.0alpha1",
35+
"php_min": "8.3.0alpha1"
2136
}
2237
]

tests/Reference/Extension/PhpBundle/Sockets/SocketsExtensionTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,10 @@ public static function setUpBeforeClass(): void
266266
// if def
267267
'UDPLITE_SEND_CSCOV',
268268
'UDPLITE_RECV_CSCOV',
269+
// if def
270+
'SO_ATTACH_REUSEPORT_CBPF',
271+
'SO_DETACH_FILTER',
272+
'SO_DETACH_BPF',
269273
);
270274
self::$optionalconstants = array_merge(self::$optionalconstants, $tmp);
271275

0 commit comments

Comments
 (0)