File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,7 @@ PHP NEWS
78
78
. Added ancillary data support for FreeBSD. (David Carlier)
79
79
. Added ancillary data support for NetBSD. (David Carlier)
80
80
. Added SO_BPF_EXTENSIONS socket option. (David Carlier)
81
+ . Added SO_SETFIB socket option. (David Carlier)
81
82
82
83
- Sodium:
83
84
. Added sodium_crypto_stream_xchacha20_xor_ic(). (Scott)
Original file line number Diff line number Diff line change @@ -252,6 +252,7 @@ PHP 8.2 UPGRADE NOTES
252
252
. SCM_CREDS2 (FreeBSD)
253
253
. LOCAL_CREDS (NetBSD)
254
254
. SO_BPF_EXTENSIONS
255
+ . SO_SETFIB
255
256
256
257
========================================
257
258
11. Changes to INI File Handling
Original file line number Diff line number Diff line change @@ -543,6 +543,9 @@ static PHP_MINIT_FUNCTION(sockets)
543
543
REGISTER_LONG_CONSTANT ("SO_LISTENQLEN" , SO_LISTENQLEN , CONST_CS | CONST_PERSISTENT );
544
544
REGISTER_LONG_CONSTANT ("SO_USER_COOKIE" , SO_USER_COOKIE , CONST_CS | CONST_PERSISTENT );
545
545
#endif
546
+ #ifdef SO_SETFIB
547
+ REGISTER_LONG_CONSTANT ("SO_SETFIB" , SO_SETFIB , CONST_CS | CONST_PERSISTENT );
548
+ #endif
546
549
#ifdef SO_ACCEPTFILTER
547
550
REGISTER_LONG_CONSTANT ("SO_ACCEPTFILTER" , SO_ACCEPTFILTER , CONST_CS | CONST_PERSISTENT );
548
551
#endif
You can’t perform that action at this time.
0 commit comments