[net] Ensure we don't spin loop by keeping the poll write bit set
authorMatt Corallo <git@bluematt.me>
Sun, 3 Oct 2021 21:41:18 +0000 (21:41 +0000)
committerMatt Corallo <git@bluematt.me>
Sat, 16 Oct 2021 02:30:00 +0000 (02:30 +0000)
Previously we'd not been unsetting POLLOUT, which will result in
us spin-loop'ing with ChannelManager_write_buffer_space_avail.

Further, we'd also not been unsetting the POLLIN bit, which would
result in us never pausing read as the SocketDescriptor API
requires us to.


No differences found