net.server_epoll: Signal API-compatibilty with util.timer

Reduces the overhead of having both util.timer and the timer handling
here, since they are very similar and now API-compatible.
This commit is contained in:
Kim Alvefur 2020-06-29 17:13:05 +02:00
parent 927ef9f2f2
commit ee10afcfab

View file

@ -896,6 +896,12 @@ return {
addserver = addserver;
addclient = addclient;
add_task = addtimer;
timer = {
-- API-compatible with util.timer
add_task = addtimer;
stop = closetimer;
reschedule = reschedule;
};
listen = listen;
loop = loop;
closeall = closeall;