luasocket/test/unixtcpclnt.lua

9 lines
189 B
Lua
Raw Normal View History

2007-04-10 00:04:13 +02:00
socket = require"socket"
socket.unix = require"socket.unix"
2016-06-24 15:23:00 +02:00
c = assert(socket.unix.tcp())
2007-04-10 00:04:13 +02:00
assert(c:connect("/tmp/foo"))
while 1 do
local l = io.read()
assert(c:send(l .. "\n"))
end