mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
net.server: Remove socket constructor fallback
Should no longer be needed
This commit is contained in:
parent
284152ba25
commit
2104ac9fb0
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue