mirror of
https://github.com/MikaylaFischler/cc-mek-scada.git
synced 2024-08-30 18:22:34 +00:00
21 lines
409 B
Lua
21 lines
409 B
Lua
local apisessions = {}
|
|
|
|
---@param packet capi_frame
|
|
function apisessions.handle_packet(packet)
|
|
end
|
|
|
|
-- attempt to identify which session's watchdog timer fired
|
|
---@param timer_event number
|
|
function apisessions.check_all_watchdogs(timer_event)
|
|
end
|
|
|
|
-- delete all closed sessions
|
|
function apisessions.free_all_closed()
|
|
end
|
|
|
|
-- close all open connections
|
|
function apisessions.close_all()
|
|
end
|
|
|
|
return apisessions
|