net.server_epoll: Allow setting a custom error handler for listener

This lets plugins handle errors in some custom way, should they wish to.
This commit is contained in:
Kim Alvefur 2020-06-30 17:35:07 +02:00
parent 0a071df2d4
commit 7acd39cdbe

View file

@ -192,7 +192,8 @@ function interface:on(what, ...)
self:noise("Missing listener 'on%s'", what); -- uncomment for development and debugging
return;
end
local ok, err = xpcall(listener, traceback, self, ...);
local onerror = self.listeners.onerror or traceback;
local ok, err = xpcall(listener, onerror, self, ...);
if not ok then
if cfg.fatal_errors then
self:error("Closing due to error calling on%s: %s", what, err);