LeviLamina
Loading...
Searching...
No Matches
SSLAdapterFactory.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/rtc/SSLMode.h"
7#include "mc/external/rtc/SSLRole.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace rtc { class SSLAdapter; }
12namespace rtc { class SSLCertificateVerifier; }
13namespace rtc { class SSLIdentity; }
14namespace rtc { class Socket; }
15// clang-format on
16
17namespace rtc {
18
20public:
21 // virtual functions
22 // NOLINTBEGIN
23 // vIndex: 0
24 virtual ~SSLAdapterFactory() = default;
25
26 // vIndex: 1
27 virtual void SetMode(::rtc::SSLMode) = 0;
28
29 // vIndex: 2
30 virtual void SetCertVerifier(::rtc::SSLCertificateVerifier*) = 0;
31
32 // vIndex: 3
33 virtual void SetIdentity(::std::unique_ptr<::rtc::SSLIdentity>) = 0;
34
35 // vIndex: 4
36 virtual void SetRole(::rtc::SSLRole) = 0;
37
38 // vIndex: 5
39 virtual void SetIgnoreBadCert(bool) = 0;
40
41 // vIndex: 6
42 virtual ::rtc::SSLAdapter* CreateAdapter(::rtc::Socket*) = 0;
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54
55 // NOLINTEND
56};
57
58} // namespace rtc
Definition SSLAdapterFactory.h:19
Definition SSLCertificateVerifier.h:12
Definition Socket.h:12