proto: Remove send_hello, do it inline.
This commit is contained in:
parent
56a669af45
commit
652ee58c13
@ -45,7 +45,7 @@ accept(LSocket) ->
|
|||||||
ssl:ssl_accept(CSocket),
|
ssl:ssl_accept(CSocket),
|
||||||
try
|
try
|
||||||
log(0, "hello (new connection)"),
|
log(0, "hello (new connection)"),
|
||||||
egs_proto:send_hello(CSocket),
|
egs_proto:packet_send(CSocket, << 16#02020300:32, 0:352 >>),
|
||||||
Pid = spawn_link(?MODULE, process, [CSocket, 0]),
|
Pid = spawn_link(?MODULE, process, [CSocket, 0]),
|
||||||
ssl:controlling_process(CSocket, Pid)
|
ssl:controlling_process(CSocket, Pid)
|
||||||
catch
|
catch
|
||||||
@ -626,7 +626,7 @@ handle(16#0b05, _, _, _, _) ->
|
|||||||
%% @doc Start mission handler. Packet contains the selected mission number.
|
%% @doc Start mission handler. Packet contains the selected mission number.
|
||||||
%% @todo Load more than one mission.
|
%% @todo Load more than one mission.
|
||||||
|
|
||||||
handle(16#0c01, CSocket, GID, _, Orig) ->
|
handle(16#0c01, CSocket, GID, _, _) ->
|
||||||
Packet = << 16#0c020300:32, 0:160, 16#00011300:32, GID:32/little-unsigned-integer, 0:96 >>,
|
Packet = << 16#0c020300:32, 0:160, 16#00011300:32, GID:32/little-unsigned-integer, 0:96 >>,
|
||||||
egs_proto:packet_send(CSocket, Packet),
|
egs_proto:packet_send(CSocket, Packet),
|
||||||
mission_load(CSocket, GID, 1000013, 0, 1121, 0); % load test mission!
|
mission_load(CSocket, GID, 1000013, 0, 1121, 0); % load test mission!
|
||||||
|
@ -58,7 +58,7 @@ accept(LSocket, SessionID) ->
|
|||||||
|
|
||||||
process(CSocket, SessionID) ->
|
process(CSocket, SessionID) ->
|
||||||
log(SessionID, "hello"),
|
log(SessionID, "hello"),
|
||||||
egs_proto:send_hello(CSocket, SessionID),
|
egs_proto:packet_send(CSocket, << 16#02020300:32, 0:288, SessionID:32/little-unsigned-integer >>),
|
||||||
?MODULE:loop(CSocket, SessionID).
|
?MODULE:loop(CSocket, SessionID).
|
||||||
|
|
||||||
%% @doc Main loop for the login server.
|
%% @doc Main loop for the login server.
|
||||||
|
@ -277,17 +277,6 @@ send_global(CSocket, Type, Message, Duration) ->
|
|||||||
ignore
|
ignore
|
||||||
end.
|
end.
|
||||||
|
|
||||||
%% @doc Say hello. Used by the game server where a temporary session ID isn't needed.
|
|
||||||
|
|
||||||
send_hello(CSocket) ->
|
|
||||||
send_hello(CSocket, 0).
|
|
||||||
|
|
||||||
%% @doc Say hello and send a temporary session ID to the client. Used by the login server.
|
|
||||||
|
|
||||||
send_hello(CSocket, SessionID) ->
|
|
||||||
Packet = << 16#0202:16, 0:304, SessionID:32/little-unsigned-integer >>,
|
|
||||||
packet_send(CSocket, Packet).
|
|
||||||
|
|
||||||
%% @doc Init quest.
|
%% @doc Init quest.
|
||||||
|
|
||||||
send_init_quest(CSocket, GID, QuestID) ->
|
send_init_quest(CSocket, GID, QuestID) ->
|
||||||
|
Loading…
Reference in New Issue
Block a user