LeviLamina
Loading...
Searching...
No Matches
SSLHandshakeError.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace rtc {
6
7enum class SSLHandshakeError : int {
8 Unknown = 0,
9 IncompatibleCiphersuite = 1,
10 MaxValue = 2,
11};
12
13}