feat : 토큰 인증 RestApi 구현 / Token기반 haskKey구현 / Dummy, User Token체크 분기

This commit is contained in:
qornwh1
2026-03-04 15:53:15 +09:00
parent 053c5d23b9
commit 343ea43a03
12 changed files with 187 additions and 16 deletions

View File

@@ -6,6 +6,7 @@ namespace ServerLib.Packet;
/// </summary>
public enum PacketType : ushort
{
Auth = 1, // 클라 → 서버: 최초 인증 (HashKey 전달)
ACC_TOKEN = 1, // 클라 → 서버: 최초 인증 (HashKey 전달)
DUMMY_ACC_TOKEN = 1001,
// 1000번 이상은 게임 패킷으로 예약
}