mirror of
https://github.com/lunarmodules/luasocket.git
synced 2024-11-08 14:28:21 +01:00
test/udp-zero-length-send-recv: add missing "socket ="; use shebang "#!/usr/bin/env lua"
This commit is contained in:
parent
a7baf8dc25
commit
743a5f1bcf
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/lua
|
#!/usr/bin/env lua
|
||||||
|
|
||||||
--[[
|
--[[
|
||||||
Show that luasocket returns an error message on zero-length UDP sends,
|
Show that luasocket returns an error message on zero-length UDP sends,
|
||||||
@ -12,7 +12,7 @@ listening on lo, link-type EN10MB (Ethernet), capture size 65535 bytes
|
|||||||
|
|
||||||
]]
|
]]
|
||||||
|
|
||||||
require"socket"
|
socket = require"socket"
|
||||||
|
|
||||||
s = assert(socket.udp())
|
s = assert(socket.udp())
|
||||||
r = assert(socket.udp())
|
r = assert(socket.udp())
|
||||||
|
Loading…
Reference in New Issue
Block a user