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

@ -737,7 +737,7 @@ local function addclient( addr, serverport, listener, pattern, sslctx, typ )
typ = "tcp4";
end
end
local create = socket[typ] or socket.tcp;
local create = socket[typ];
if type( create ) ~= "function" then
return nil, "invalid socket type"
end