feat: fully reading auth packets and use stamps (#1398)

* feat: fully reading auth packets and use stamps

* fix the stupid define

* Address feedback

* no more Stamp(...)
This commit is contained in:
Aaron Kimbrell
2024-01-06 02:16:10 -06:00
committed by GitHub
parent 0c104e819d
commit 325598cd99
3 changed files with 238 additions and 67 deletions

View File

@@ -16,6 +16,14 @@ enum class ServerType : uint32_t {
World
};
enum class ServiceId : uint32_t{
General = 0,
Auth = 1,
Chat = 2,
World = 4,
Client = 5,
};
namespace Game {
using signal_t = volatile std::sig_atomic_t;
}