LeviLamina
Loading...
Searching...
No Matches
PublicKeyMode.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace RakNet {
6
7enum class PublicKeyMode : int {
8 InsecureConnection = 0,
9 AcceptAnyPublicKey = 1,
10 UseKnownPublicKey = 2,
11 UseTwoWayAuthentication = 3,
12};
13
14}