summaryrefslogtreecommitdiffstats
path: root/src/game/server/whitelist.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/server/whitelist.hh')
-rw-r--r--src/game/server/whitelist.hh9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/game/server/whitelist.hh b/src/game/server/whitelist.hh
index 4695d16..e9dc3aa 100644
--- a/src/game/server/whitelist.hh
+++ b/src/game/server/whitelist.hh
@@ -1,3 +1,10 @@
+// SPDX-License-Identifier: BSD-2-Clause
+// Copyright (c) 2025 Kirill Dmitrievich
+// File: whitelist.hh
+// Description: Player allow-list
+
+#ifndef SERVER_WHITELIST_HH
+#define SERVER_WHITELIST_HH
#pragma once
namespace config
@@ -24,3 +31,5 @@ namespace whitelist
bool contains(std::string_view username);
bool matches(std::string_view username, std::uint64_t password_hash);
} // namespace whitelist
+
+#endif