Skip to content

Commit fe7b7f9

Browse files
committed
#133: Sockets [updlite protocol support, with checksum coverage settings](php/php-src#10468)
1 parent e70a9ad commit fe7b7f9

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,20 @@
33
"name": "IP_BIND_ADDRESS_NO_PORT",
44
"ext_min": "8.3.0alpha1",
55
"php_min": "8.3.0alpha1"
6+
},
7+
{
8+
"name": "SOL_UDPLITE",
9+
"ext_min": "8.3.0alpha1",
10+
"php_min": "8.3.0alpha1"
11+
},
12+
{
13+
"name": "UDPLITE_SEND_CSCOV",
14+
"ext_min": "8.3.0alpha1",
15+
"php_min": "8.3.0alpha1"
16+
},
17+
{
18+
"name": "UDPLITE_RECV_CSCOV",
19+
"ext_min": "8.3.0alpha1",
20+
"php_min": "8.3.0alpha1"
621
}
722
]

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,11 @@ public static function setUpBeforeClass(): void
261261
'TCP_DEFER_ACCEPT',
262262
// if def
263263
'IP_BIND_ADDRESS_NO_PORT',
264+
// if def IPPROTO_UDPLITE
265+
'SOL_UDPLITE',
266+
// if def
267+
'UDPLITE_SEND_CSCOV',
268+
'UDPLITE_RECV_CSCOV',
264269
);
265270
self::$optionalconstants = array_merge(self::$optionalconstants, $tmp);
266271

0 commit comments

Comments
 (0)