File tree Expand file tree Collapse file tree 4 files changed +18
-1
lines changed
Expand file tree Collapse file tree 4 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,10 @@ PHP NEWS
5656 . Soap::__setCookie() when cookie name is a digit is now not stored and represented
5757 as a string anymore but a int. (David Carlier)
5858
59+ - Sockets:
60+ . Added the TCP_USER_TIMEOUT constant for Linux to set the maximum time in milliseconds
61+ transmitted data can remain unacknowledged. (James Lucas)
62+
5963- SPL:
6064 . DirectoryIterator key can now work better with filesystem supporting larger
6165 directory indexing. (David Carlier)
Original file line number Diff line number Diff line change @@ -90,6 +90,9 @@ PHP 8.6 UPGRADE NOTES
909010. New Global Constants
9191========================================
9292
93+ - Sockets:
94+ . TCP_USER_TIMEOUT (Linux only).
95+
9396========================================
949711. Changes to INI File Handling
9598========================================
Original file line number Diff line number Diff line change 602602 */
603603const TCP_SYNCNT = UNKNOWN ;
604604#endif
605+ #ifdef TCP_USER_TIMEOUT
606+ /**
607+ * @var int
608+ * @cvalue TCP_USER_TIMEOUT
609+ */
610+ const TCP_USER_TIMEOUT = UNKNOWN ;
611+ #endif
605612#ifdef SO_ZEROCOPY
606613/**
607614 * @var int
You can’t perform that action at this time.
0 commit comments