2020-10-25 17:40:08 -07:00
|
|
|
/*************************************************************************
|
|
|
|
|
* ModernUO *
|
2023-08-09 09:09:26 -07:00
|
|
|
* Copyright 2019-2023 - ModernUO Development Team *
|
2020-10-25 17:40:08 -07:00
|
|
|
* Email: hi@modernuo.com *
|
|
|
|
|
* File: PacketUtilities.cs *
|
|
|
|
|
* *
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or *
|
|
|
|
|
* (at your option) any later version. *
|
|
|
|
|
* *
|
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
2020-12-24 17:13:55 -08:00
|
|
|
using System;
|
2020-10-25 17:40:08 -07:00
|
|
|
using System.Buffers;
|
|
|
|
|
using System.IO;
|
2020-11-20 21:50:13 -08:00
|
|
|
using System.Runtime.CompilerServices;
|
2020-10-25 17:40:08 -07:00
|
|
|
|
2022-10-10 21:47:08 -07:00
|
|
|
namespace Server.Network;
|
|
|
|
|
|
|
|
|
|
public static class PacketUtilities
|
2020-10-25 17:40:08 -07:00
|
|
|
{
|
2022-10-10 21:47:08 -07:00
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
|
public static void WritePacketLength(this ref SpanWriter writer)
|
|
|
|
|
{
|
|
|
|
|
writer.Seek(1, SeekOrigin.Begin);
|
|
|
|
|
writer.Write((ushort)writer.BytesWritten);
|
|
|
|
|
writer.Seek(0, SeekOrigin.End);
|
|
|
|
|
}
|
2020-12-24 17:13:55 -08:00
|
|
|
|
2022-10-10 21:47:08 -07:00
|
|
|
// If LOCAL INIT is off, then stack/heap allocations have garbage data
|
|
|
|
|
// Initializes the first byte (Packet ID) so it can be used as a flag.
|
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
|
public static Span<byte> InitializePacket(this Span<byte> buffer)
|
|
|
|
|
{
|
2023-11-21 12:18:20 -08:00
|
|
|
buffer[0] = 0;
|
2022-10-10 21:47:08 -07:00
|
|
|
return buffer;
|
2020-10-25 17:40:08 -07:00
|
|
|
}
|
|
|
|
|
}
|