net.server: Remove socket constructor fallback

Should no longer be needed
This commit is contained in:
Kim Alvefur 2018-10-12 16:24:49 +02:00
parent 284152ba25
commit 2104ac9fb0
2 changed files with 2 additions and 2 deletions

View file

@ -1017,7 +1017,7 @@ local addclient = function( address, port, listeners, pattern, sslctx, typ )
typ = "tcp4";
end
end
local create = luasocket[typ] or luasocket.tcp;
local create = luasocket[typ];
if type( create ) ~= "function" then
err = "invalid socket type"
end