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).
|
-module(egs_cron).
|
||||||
-export([start/0]). % external
|
-export([start/0]). % external
|
||||||
-export([cleanup/0, keepalive/0]). % internal
|
-export([cleanup/0]). % internal
|
||||||
|
|
||||||
-include("include/records.hrl").
|
-include("include/records.hrl").
|
||||||
|
|
||||||
%% @doc Start the cron processes.
|
%% @doc Start the cron processes.
|
||||||
|
|
||||||
start() ->
|
start() ->
|
||||||
KeepAlivePid = spawn_link(?MODULE, keepalive, []),
|
Pid = spawn_link(?MODULE, cleanup, []),
|
||||||
spawn_link(?MODULE, cleanup, []),
|
{ok, Pid}.
|
||||||
{ok, KeepAlivePid}.
|
|
||||||
|
|
||||||
%% @doc Cleanup the users table of failures to log into the game server.
|
%% @doc Cleanup the users table of failures to log into the game server.
|
||||||
|
|
||||||
@ -40,16 +39,3 @@ cleanup() ->
|
|||||||
reload,
|
reload,
|
||||||
?MODULE:cleanup()
|
?MODULE:cleanup()
|
||||||
end.
|
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),
|
link(MPid),
|
||||||
put(socket, CSocket),
|
put(socket, CSocket),
|
||||||
send_0202(),
|
send_0202(),
|
||||||
|
timer:send_interval(5000, {psu_keepalive}),
|
||||||
process().
|
process().
|
||||||
|
|
||||||
%% @doc Process the new connections.
|
%% @doc Process the new connections.
|
||||||
@ -427,6 +428,7 @@ myroom_send_packet(Filename) ->
|
|||||||
send(File).
|
send(File).
|
||||||
|
|
||||||
%% @doc Game's main loop.
|
%% @doc Game's main loop.
|
||||||
|
%% @todo We probably don't want to send a keepalive packet unnecessarily.
|
||||||
|
|
||||||
loop(SoFar) ->
|
loop(SoFar) ->
|
||||||
receive
|
receive
|
||||||
|
Loading…
Reference in New Issue
Block a user