Use a timer instead of egs_cron for keepalive packets.
This commit is contained in:
parent
5109ccf337
commit
ac4a19dab9
@ -18,16 +18,15 @@
|
||||
|
||||
-module(egs_cron).
|
||||
-export([start/0]). % external
|
||||
-export([cleanup/0, keepalive/0]). % internal
|
||||
-export([cleanup/0]). % internal
|
||||
|
||||
-include("include/records.hrl").
|
||||
|
||||
%% @doc Start the cron processes.
|
||||
|
||||
start() ->
|
||||
KeepAlivePid = spawn_link(?MODULE, keepalive, []),
|
||||
spawn_link(?MODULE, cleanup, []),
|
||||
{ok, KeepAlivePid}.
|
||||
Pid = spawn_link(?MODULE, cleanup, []),
|
||||
{ok, Pid}.
|
||||
|
||||
%% @doc Cleanup the users table of failures to log into the game server.
|
||||
|
||||
@ -40,16 +39,3 @@ cleanup() ->
|
||||
reload,
|
||||
?MODULE:cleanup()
|
||||
end.
|
||||
|
||||
%% @doc Keep connected players alive.
|
||||
%% @todo Don't even need to send a keepalive packet if we sent a packet in the last Timeout milliseconds.
|
||||
|
||||
keepalive() ->
|
||||
receive
|
||||
_ ->
|
||||
?MODULE:keepalive()
|
||||
after 5000 ->
|
||||
lists:foreach(fun(User) -> User#users.pid ! {psu_keepalive} end, egs_db:users_select_all()),
|
||||
reload,
|
||||
?MODULE:keepalive()
|
||||
end.
|
||||
|
@ -66,6 +66,7 @@ process_init(CSocket, MPid) ->
|
||||
link(MPid),
|
||||
put(socket, CSocket),
|
||||
send_0202(),
|
||||
timer:send_interval(5000, {psu_keepalive}),
|
||||
process().
|
||||
|
||||
%% @doc Process the new connections.
|
||||
@ -427,6 +428,7 @@ myroom_send_packet(Filename) ->
|
||||
send(File).
|
||||
|
||||
%% @doc Game's main loop.
|
||||
%% @todo We probably don't want to send a keepalive packet unnecessarily.
|
||||
|
||||
loop(SoFar) ->
|
||||
receive
|
||||
|
Loading…
Reference in New Issue
Block a user