File tree 3 files changed +7
-0
lines changed
3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,9 @@ PHP NEWS
49
49
. Fixed bug GH-7787 (Improve session write failure message for user error
50
50
handlers). (ilutov)
51
51
52
+ - Sockets:
53
+ . Added TCP_NOTSENT_LOWAT socket option. (David Carlier)
54
+
52
55
- Sodium:
53
56
. Added sodium_crypto_stream_xchacha20_xor_ic(). (Scott)
54
57
Original file line number Diff line number Diff line change @@ -203,6 +203,7 @@ PHP 8.2 UPGRADE NOTES
203
203
204
204
- Sockets:
205
205
. SO_INCOMING_CPU
206
+ . TCP_NOTSENT_LOWAT
206
207
207
208
========================================
208
209
11. Changes to INI File Handling
Original file line number Diff line number Diff line change @@ -553,6 +553,9 @@ static PHP_MINIT_FUNCTION(sockets)
553
553
#ifdef TCP_NODELAY
554
554
REGISTER_LONG_CONSTANT ("TCP_NODELAY" , TCP_NODELAY , CONST_CS | CONST_PERSISTENT );
555
555
#endif
556
+ #ifdef TCP_NOTSENT_LOWAT
557
+ REGISTER_LONG_CONSTANT ("TCP_NOTSENT_LOWAT" , TCP_NOTSENT_LOWAT , CONST_CS | CONST_PERSISTENT );
558
+ #endif
556
559
#ifdef TCP_DEFER_ACCEPT
557
560
REGISTER_LONG_CONSTANT ("TCP_DEFER_ACCEPT" , TCP_DEFER_ACCEPT , CONST_CS | CONST_PERSISTENT );
558
561
#endif
You can’t perform that action at this time.
0 commit comments