You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
php#53: Add async support for UDP socket operations
Extend network_async functionality to UDP send/recv operations:
* sock_sendto() now supports async writes with poll-first approach
* sock_recvfrom() now supports async reads with poll-first approach
* Consistent with existing TCP async implementation
* Uses network_async_await_stream_socket() for efficient polling
* Maintains backward compatibility for non-async contexts
This enables UDP sockets to work seamlessly in async/coroutine
environments without blocking the event loop.
0 commit comments