mirror of
https://github.com/lunarmodules/luasocket.git
synced 2025-07-12 22:03:31 +02:00
On failure, exit with a message instead of blocking indefinitely.
This commit is contained in:
@ -24,12 +24,14 @@ if ok ~= 0 then
|
||||
print("send of zero failed with:", ok, emsg)
|
||||
end
|
||||
|
||||
assert(r:settimeout(2))
|
||||
|
||||
ok, emsg = r:receive()
|
||||
|
||||
if not ok or string.len(ok) ~= 0 then
|
||||
print("receive of zero failed with:", ok, emsg)
|
||||
print("fail - receive of zero failed with:", ok, emsg)
|
||||
os.exit(1)
|
||||
end
|
||||
|
||||
print"ok"
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user