We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fc9ddb commit 4cb90cbCopy full SHA for 4cb90cb
main/poll/poll_backend_wsapoll.c
@@ -29,7 +29,7 @@ static uint32_t wsapoll_events_to_native(uint32_t events)
29
{
30
uint32_t native = 0;
31
if (events & PHP_POLL_READ) {
32
- native |= POLLRDNORM | POLLRDBAND;
+ native |= POLLRDNORM;
33
}
34
if (events & PHP_POLL_WRITE) {
35
native |= POLLWRNORM;
@@ -46,7 +46,7 @@ static uint32_t wsapoll_events_to_native(uint32_t events)
46
static uint32_t wsapoll_events_from_native(uint32_t native)
47
48
uint32_t events = 0;
49
- if (native & (POLLRDNORM | POLLRDBAND)) {
+ if (native & POLLRDNORM) {
50
events |= PHP_POLL_READ;
51
52
if (native & POLLWRNORM) {
0 commit comments