Diff

net/server_select.lua @ 9499:36e379f058c8

net.server: Swich method for connecting sockets with remotes LuaSocket TCP sockets have have both :connect and :setpeername, which are the exact same function, however UDP sockets only have :setpeername. Switching to :setpeername allows most of this code to be generic wrt TCP/UDP.
author Kim Alvefur <zash@zash.se>
date Fri, 12 Oct 2018 17:36:34 +0200
parent 9495:89e05b118f6e
child 9574:03214e6e3272
child 9634:f457edaab510
line wrap: on
line diff
--- a/net/server_select.lua	Fri Oct 12 17:28:08 2018 +0200
+++ b/net/server_select.lua	Fri Oct 12 17:36:34 2018 +0200
@@ -1032,7 +1032,7 @@
 		return nil, err
 	end
 	client:settimeout( 0 )
-	local ok, err = client:connect( address, port )
+	local ok, err = client:setpeername( address, port )
 	if ok or err == "timeout" or err == "Operation already in progress" then
 		return wrapclient( client, address, port, listeners, pattern, sslctx )
 	else