test/testClient.lua

Tue, 05 Jul 2011 22:23:15 -0400

author
Thomas Harning Jr <harningt@gmail.com>
date
Tue, 05 Jul 2011 22:23:15 -0400
changeset 105
9fb82ef210a3
parent 17
1a093a31059d
permissions
-rw-r--r--

base: adds distribution archive generation functionality to Makefile

require"luaevent"
require"socket"
local oldPrint = print
print = function(...)
	oldPrint("CLT", ...)
end

local function func()
	print("ACTIVATED")
	local sock = socket.tcp()
	--sock:
	sock = luaevent.wrap(sock)
	print(assert(sock:connect("localhost", 20000)))
	for i = 1, 100 do assert(sock:send("Greet me  ")) assert(sock:receive(10)) collectgarbage() end
	print("COMPLETE")
end

luaevent.addthread(func)

luaevent.loop()

mercurial