LeviLamina
Loading...
Searching...
No Matches
TransportDescription.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/cricket/ConnectionRole.h"
7#include "mc/external/cricket/IceMode.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace cricket { struct IceParameters; }
12namespace rtc { struct SSLFingerprint; }
13// clang-format on
14
15namespace cricket {
16
18public:
19 // member variables
20 // NOLINTBEGIN
27 // NOLINTEND
28
29public:
30 // prevent constructor by default
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCNAPI ::cricket::IceParameters GetIceParameters() const;
37
39
41
42 MCNAPI TransportDescription(::std::string_view ice_ufrag, ::std::string_view ice_pwd);
43
45 ::std::vector<::std::string> const& transport_options,
46 ::std::string_view ice_ufrag,
47 ::std::string_view ice_pwd,
48 ::cricket::IceMode ice_mode,
49 ::cricket::ConnectionRole role,
50 ::rtc::SSLFingerprint const* identity_fingerprint
51 );
52
54 // NOLINTEND
55
56public:
57 // constructor thunks
58 // NOLINTBEGIN
59 MCNAPI void* $ctor();
60
61 MCNAPI void* $ctor(::cricket::TransportDescription const& from);
62
63 MCNAPI void* $ctor(::std::string_view ice_ufrag, ::std::string_view ice_pwd);
64
65 MCNAPI void* $ctor(
66 ::std::vector<::std::string> const& transport_options,
67 ::std::string_view ice_ufrag,
68 ::std::string_view ice_pwd,
69 ::cricket::IceMode ice_mode,
70 ::cricket::ConnectionRole role,
71 ::rtc::SSLFingerprint const* identity_fingerprint
72 );
73 // NOLINTEND
74
75public:
76 // destructor thunk
77 // NOLINTBEGIN
78 MCNAPI void $dtor();
79 // NOLINTEND
80};
81
82} // namespace cricket
Definition TransportDescription.h:17
MCAPI TransportDescription(::std::string_view ice_ufrag, ::std::string_view ice_pwd)
MCAPI void * $ctor(::std::string_view ice_ufrag, ::std::string_view ice_pwd)
MCAPI TransportDescription(::std::vector<::std::string > const &transport_options, ::std::string_view ice_ufrag, ::std::string_view ice_pwd, ::cricket::IceMode ice_mode, ::cricket::ConnectionRole role, ::rtc::SSLFingerprint const *identity_fingerprint)
MCAPI::cricket::IceParameters GetIceParameters() const
MCAPI TransportDescription(::cricket::TransportDescription const &from)
MCAPI void * $ctor(::std::vector<::std::string > const &transport_options, ::std::string_view ice_ufrag, ::std::string_view ice_pwd, ::cricket::IceMode ice_mode, ::cricket::ConnectionRole role, ::rtc::SSLFingerprint const *identity_fingerprint)
MCAPI void * $ctor(::cricket::TransportDescription const &from)
Definition Alias.h:14
Definition SSLFingerprint.h:14