Skip to content

Commit 4cfc729

Browse files
committed
Merge branch 'PHP-8.2' into PHP-8.3
* PHP-8.2: [skip ci] Avoid potential network port conflict in tests
2 parents fcc159b + 004a398 commit 4cfc729

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/standard/tests/network/udp4loop.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Streams Based IPv4 UDP Loopback test
33
--FILE--
44
<?php
55
/* Setup socket server */
6-
for ($port = 31338; $port < 31500; ++$port) {
6+
for ($port = 31339; $port < 31500; ++$port) {
77
$uri = "udp://127.0.0.1:$port";
88
$server = @stream_socket_server($uri, $errno, $errstr, STREAM_SERVER_BIND);
99
if ($server) break;

0 commit comments

Comments
 (0)