Skip to content

Commit 5fdf95b

Browse files
committed
Merge branch 'PHP-8.2'
* PHP-8.2: Fix GH-9574: SOCKET_EPROTO constant missing since PHP 8.2 dev
2 parents 31dca2e + 4767b09 commit 5fdf95b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

ext/sockets/sockets.stub.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1105,11 +1105,11 @@
11051105
*/
11061106
const SOCKET_ECOMM = UNKNOWN;
11071107
#endif
1108-
#ifdef PHP_SOCKET_EPROTO
1108+
#ifdef EPROTO
11091109
/**
11101110
* Protocol error
11111111
* @var int
1112-
* @cvalue PHP_SOCKET_EPROTO
1112+
* @cvalue EPROTO
11131113
*/
11141114
const SOCKET_EPROTO = UNKNOWN;
11151115
#endif

ext/sockets/sockets_arginfo.h

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)