initial commit
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System.IO;
|
||||
using Leb128;
|
||||
using Server.Connectings;
|
||||
using Server.Helper;
|
||||
|
||||
namespace Server.Messages;
|
||||
|
||||
internal class HandlerSendMemoryGet
|
||||
{
|
||||
public static void Read(Clients client, object[] objects)
|
||||
{
|
||||
string text = (string)objects[1];
|
||||
if (Methods.GetChecksum(text) == (string)objects[2])
|
||||
{
|
||||
byte[] data = LEB128.Write(new object[3]
|
||||
{
|
||||
"SendMemory",
|
||||
File.ReadAllBytes(text),
|
||||
Path.GetFileName(text)
|
||||
});
|
||||
client.Send(data);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user