egs:global: Check the message length to avoid crashing clients.
This commit is contained in:
parent
7dea8b355e
commit
228d85230b
@ -51,8 +51,12 @@ stop() ->
|
||||
%% @doc Send a global message.
|
||||
%% @todo Move that in a psu module.
|
||||
global(Type, Message) ->
|
||||
{ok, List} = egs_user_model:select(all),
|
||||
lists:foreach(fun(User) -> psu_proto:send_global(User#egs_user_model.socket, Type, Message) end, List).
|
||||
if length(Message) > 511 ->
|
||||
io:format("global: message too long~n");
|
||||
true ->
|
||||
{ok, List} = egs_user_model:select(all),
|
||||
lists:foreach(fun(User) -> psu_proto:send_global(User#egs_user_model.socket, Type, Message) end, List)
|
||||
end.
|
||||
|
||||
%% @doc Warp all players to a new map.
|
||||
%% @todo Move that in a psu module.
|
||||
|
Loading…
Reference in New Issue
Block a user