Packages not dropping: Same for this.. I guess they should be dropped automatically, let's see if I have to set something in LuaSocket
EDIT: I have to enable allowing broadcast first, scheduled for next version
EDIT2: Can't find anything about packet dropping, but let me explain how you can already enable broadcasting:
Code: Select all
--single connection
love.client.Init()
love.client.socket:setoption("broadcast", true)
--multiple connections
conn = love.client()
conn.socket:setoption("broadcast", true)