Like the plugin, create a new instance of it in Lua
Then implement the ReceivedData function
And create the instance
It's not perfect, so I think it needs work
but it should work for really basic things
Code:
MyTCPLink = {}
MyTCPLink.__index = MyTCPLink
function MyTCPLink:new()
local t = {}
setmetatable(t, CorePlugin)
local w = Lua__cTCPLink:new()
tolua.setpeer(w, t)
w:tolua__set_instance(w)
return w
end
Then implement the ReceivedData function
Code:
function MyTCPLink:ReceivedData( data, size )
print("hello world")
end
And create the instance
Code:
Link = MyTCPLink:new()
It's not perfect, so I think it needs work
