Skip to content

Commit e70a9ad

Browse files
committed
#133: Sockets [adding IP_BIND_ADDRESS_NO_PORT](php/php-src#11119)
1 parent 43934bf commit e70a9ad

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
{
3+
"name": "IP_BIND_ADDRESS_NO_PORT",
4+
"ext_min": "8.3.0alpha1",
5+
"php_min": "8.3.0alpha1"
6+
}
7+
]

src/Application/Command/Init/InitHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1183,7 +1183,7 @@ private function majorReleaseDefinitionProvider(): Generator
11831183
'41', '43',
11841184
'52', '54', '55',
11851185
'70', '72',
1186-
'81', '82',
1186+
'81', '82', '83',
11871187
],
11881188
'functions' => [
11891189
'41', '42', '43',

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,8 @@ public static function setUpBeforeClass(): void
259259
'AI_NUMERICSERV',
260260
'SOL_LOCAL',
261261
'TCP_DEFER_ACCEPT',
262+
// if def
263+
'IP_BIND_ADDRESS_NO_PORT',
262264
);
263265
self::$optionalconstants = array_merge(self::$optionalconstants, $tmp);
264266

0 commit comments

Comments
 (0)