- 17 Feb, 2019 2 commits
-
-
Nathaniel Wesley Filardo authored
Fixes to #2650: - Convert fifosock to returning tables containing ctors - Improve docs - Add a missed :on("sent", nil) in the http server
-
sergio authored
-
- 16 Feb, 2019 1 commit
-
-
Nathaniel Wesley Filardo authored
* lua_modules/fifo: a generic queue & socket wrapper One occasionally wants a generic fifo, so here's a plausible implementation that's reasonably flexible in its usage. One possible consumer of this is a variant of TerryE's two-level fifo trick currently in the telnetd example. Factor that out to fifosock for more general use. * lua_examples/telnet: use factored out fifosock * lua_modules/http: improve implementation Switch to fifosock for in-order sending and waiting for everything to be sent before closing. Fix header callback by moving the invocation of the handler higher * fifosock: optimistically cork and delay tx If we just pushed a little bit of data into a fifosock that had idled, wait a tick (1 ms) before transmitting. Hopefully, this means that we let the rest of the system push more data in before we send the first packet. But in a high-throughput situation, where we are streaming data ...
-
- 13 Feb, 2019 1 commit
-
-
Lukáš Voborský authored
-
- 27 Aug, 2018 1 commit
-
-
Nathaniel Wesley Filardo authored
* Remove the old telnet.lua, which has been duplicated as simple_telnet.lua. * Fix some typos and whitespace issues
-
- 08 Jul, 2018 1 commit
-
-
Jedrzej Jajor authored
-
- 01 Jul, 2018 1 commit
-
-
TerryE authored
-