Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit b02f95a

Browse filesBrowse files
committed
ext/sockets: adding windows SO_EXCLUSIVEADDRUSE constant.
Close GH-13030
1 parent 1d641f6 commit b02f95a
Copy full SHA for b02f95a

File tree

Expand file treeCollapse file tree

4 files changed

+15
-1
lines changed
Filter options
Expand file treeCollapse file tree

4 files changed

+15
-1
lines changed

‎NEWS

Copy file name to clipboardExpand all lines: NEWS
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ SOAP:
102102

103103
Sockets:
104104
. Removed the deprecated inet_ntoa call support. (David Carlier)
105+
. Added the SO_EXECLUSIVEADDRUSE windows constant. (David Carlier)
105106

106107
Sodium:
107108
. Add support for AEGIS-128L and AEGIS-256 (jedisct1)

‎UPGRADING

Copy file name to clipboardExpand all lines: UPGRADING
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,9 @@ PHP 8.4 UPGRADE NOTES
329329
. The IntlDateFormatter class exposes now the new PATTERN constant
330330
reflecting udat api's UDAT_PATTERN.
331331

332+
- Sockets:
333+
. SO_EXCLUSIVEADDRUSE (Windows only).
334+
332335
- XML:
333336
. Added XML_OPTION_PARSE_HUGE to allow large inputs in xml_parse and
334337
xml_parse_into_struct.

‎ext/sockets/sockets.stub.php

Copy file name to clipboardExpand all lines: ext/sockets/sockets.stub.php
+7Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1748,6 +1748,13 @@
17481748
*/
17491749
const SO_DETACH_BPF = UNKNOWN;
17501750
#endif
1751+
#if defined(SO_EXCLUSIVEADDRUSE)
1752+
/**
1753+
* @var int
1754+
* @cvalue SO_EXCLUSIVEADDRUSE
1755+
*/
1756+
const SO_EXCLUSIVEADDRUSE = UNKNOWN;
1757+
#endif
17511758
#if defined(TCP_QUICKACK)
17521759
/**
17531760
* @var int

‎ext/sockets/sockets_arginfo.h

Copy file name to clipboardExpand all lines: ext/sockets/sockets_arginfo.h
+4-1Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.