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
38 MCNAPI bool HasOption(::std::string_view option) const;
39
41
43
44 MCNAPI TransportDescription(::std::string_view ice_ufrag, ::std::string_view ice_pwd);
45
47 ::std::vector<::std::string> const& transport_options,
48 ::std::string_view ice_ufrag,
49 ::std::string_view ice_pwd,
50 ::cricket::IceMode ice_mode,
51 ::cricket::ConnectionRole role,
52 ::rtc::SSLFingerprint const* identity_fingerprint
53 );
54
56 // NOLINTEND
57
58public:
59 // constructor thunks
60 // NOLINTBEGIN
61 MCNAPI void* $ctor();
62
63 MCNAPI void* $ctor(::cricket::TransportDescription const& from);
64
65 MCNAPI void* $ctor(::std::string_view ice_ufrag, ::std::string_view ice_pwd);
66
67 MCNAPI void* $ctor(
68 ::std::vector<::std::string> const& transport_options,
69 ::std::string_view ice_ufrag,
70 ::std::string_view ice_pwd,
71 ::cricket::IceMode ice_mode,
72 ::cricket::ConnectionRole role,
73 ::rtc::SSLFingerprint const* identity_fingerprint
74 );
75 // NOLINTEND
76
77public:
78 // destructor thunk
79 // NOLINTBEGIN
80 MCNAPI void $dtor();
81 // NOLINTEND
82};
83
84} // namespace cricket
Definition IceParameters.h:12
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 bool HasOption(::std::string_view option) const
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