mod_admin_socket: Use wrapserver if available
authorKim Alvefur <zash@zash.se>
Mon, 01 Jun 2020 17:27:50 +0200
changeset 10866 1cfae9e85021
parent 10865 e12690a37795
child 10867 455a151db834
mod_admin_socket: Use wrapserver if available Why have a custom accept function when this is net.server's entire thing?
plugins/mod_admin_socket.lua
--- a/plugins/mod_admin_socket.lua	Mon Jun 01 17:19:08 2020 +0200
+++ b/plugins/mod_admin_socket.lua	Mon Jun 01 17:27:50 2020 +0200
@@ -55,7 +55,11 @@
 	os.remove(socket_path);
 	assert(sock:bind(socket_path));
 	assert(sock:listen());
-	conn = server.watchfd(sock:getfd(), accept_connection);
+	if server.wrapserver then
+		conn = server.wrapserver(sock, socket_path, 0, listeners);
+	else
+		conn = server.watchfd(sock:getfd(), accept_connection);
+	end
 end
 
 function module.unload()