32154
print("Attempting connection to host '" ..debughost.. "' and port " ..debugport.. "...")
local text = "POST /e1crdbg/rdbgTest?cmd=test HTTP/1.1"
local tcp = assert(socket.connect(debughost, debugport))
--note the newline below
assert(tcp:send(text.."\n"))
local s, status = tcp:receive()
print(s)
print(status)
tcp:close()
end;
зависает на строке local s, status = tcp:receive() Подскажите почему? (быстрый гуглеж не помог)
Он ждёт ответа от сокета, который не приходит
Обсуждают сегодня