aboutsummaryrefslogtreecommitdiffstats
path: root/net/cqueues.lua
Commit message (Collapse)AuthorAgeFilesLines
* net.cqueues: Fix resuming after timeoutsKim Alvefur2020-07-081-0/+14
| | | | | | | net.cqueues previously relied on timers instead of fd events sometimes. Under net.server_select, it would have called cq:loop() on every iteration of the main loop, which was probably not optimal.
* net.cqueues: Switch to server.watchfd for main loop integrationKim Alvefur2020-07-081-46/+2
| | | | | | | Why? Just look at all that code deleted! watchfd is the prefered way to poll things that expose FDs for this purpose, altho it was added after net.cqueues.
* net.cqueues: Fix incorrect version checkdaurnimator2015-01-161-1/+1
|
* net.cqueues: Fixes hardcoded timeout for first iterationdaurnimator2015-01-131-11/+16
| | | | | This was originally put in place as a fix for what ended up a cqueues bug: https://github.com/wahern/cqueues/issues/40 A check for a cqueues version with the bug fix is included.
* net.cqueues: Add workaround for luaevent callback getting collecteddaurnimator2015-01-061-1/+5
|
* net.cqueues: Add module that allows use of cqueues while still using ↵daurnimator2014-11-181-0/+65
net.server as main loop