Skip to content

Commit

Permalink
Merge branch 'PHP-8.2'
Browse files Browse the repository at this point in the history
* PHP-8.2:
  Fix GH-9574: SOCKET_EPROTO constant missing since PHP 8.2 dev
  • Loading branch information
cmb69 committed Sep 19, 2022
2 parents 31dca2e + 4767b09 commit 5fdf95b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ext/sockets/sockets.stub.php
Expand Up @@ -1105,11 +1105,11 @@
*/
const SOCKET_ECOMM = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EPROTO
#ifdef EPROTO
/**
* Protocol error
* @var int
* @cvalue PHP_SOCKET_EPROTO
* @cvalue EPROTO
*/
const SOCKET_EPROTO = UNKNOWN;
#endif
Expand Down
6 changes: 3 additions & 3 deletions ext/sockets/sockets_arginfo.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5fdf95b

Please sign in to comment.