proto: Correctly give the file size when sending the zone file.

This commit is contained in:
Loïc Hoguin 2010-05-21 12:40:05 +02:00
parent 47c656ce96
commit ea223e6993

View File

@ -359,5 +359,6 @@ send_universe_info(CSocket, GID) ->
send_zone(CSocket, Filename) ->
{ok, File} = file:read_file(Filename),
Packet = << 16#020f:16, 0:336, 16#00700100:32/unsigned-integer, File/binary >>,
Size = byte_size(File),
Packet = << 16#020f:16, 0:336, Size:32/little-unsigned-integer, File/binary >>,
packet_send(CSocket, Packet).