psu_proto: Pass the process state to send_0d05.

This commit is contained in:
Loïc Hoguin 2010-09-22 04:21:48 +02:00
parent ec22000d51
commit 8a8d800118
2 changed files with 5 additions and 5 deletions

View File

@ -85,8 +85,9 @@ event({system_key_auth_request, AuthGID, AuthKey}, State=#state{socket=Socket})
Time = calendar:datetime_to_gregorian_seconds(calendar:universal_time()),
User2 = User#egs_user_model{id=AuthGID, pid=self(), socket=Socket, state=authenticated, time=Time, lid=LID},
egs_user_model:write(User2),
psu_proto:send_0d05(User2),
{ok, egs_char_select, State#state{gid=AuthGID}};
State2 = State#state{gid=AuthGID},
psu_proto:send_0d05(State2),
{ok, egs_char_select, State2};
%% @doc Authentication request handler. Currently always succeed.
%% Use the temporary session ID as the GID for now.

View File

@ -1236,12 +1236,11 @@ send_0c00(CharUser, #state{socket=Socket, gid=DestGID, lid=DestLID}) ->
%% @doc Send the character flags list. This is the whole list of available values, not the character's.
%% Sent without fragmentation on official for unknown reasons. Do the same here.
send_0d05(DestUser) ->
#egs_user_model{id=DestGID, socket=DestSocket} = DestUser,
send_0d05(#state{socket=Socket, gid=DestGID}) ->
{ok, Flags} = file:read_file("p/flags.bin"),
Packet = << 16#0d050300:32, 0:32, 16#00011300:32, DestGID:32/little, 0:64, 16#00011300:32, DestGID:32/little, 0:64, Flags/binary >>,
Size = 4 + byte_size(Packet),
ssl:send(DestSocket, << Size:32/little, Packet/binary >>).
ssl:send(Socket, << Size:32/little, Packet/binary >>).
%% Utility functions.