LeviLamina
Loading...
Searching...
No Matches
IceConfig.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/cricket/ContinualGatheringPolicy.h"
7
8namespace cricket {
9
10struct IceConfig {
11public:
12 // member functions
13 // NOLINTBEGIN
14 MCAPI IceConfig();
15
16 MCAPI IceConfig(int, int, ::cricket::ContinualGatheringPolicy, bool, int, bool, int, int);
17
18 MCAPI int backup_connection_ping_interval_or_default() const;
19
20 MCAPI int ice_check_interval_strong_connectivity_or_default() const;
21
22 MCAPI int ice_check_interval_weak_connectivity_or_default() const;
23
24 MCAPI int ice_check_min_interval_or_default() const;
25
26 MCAPI int ice_inactive_timeout_or_default() const;
27
28 MCAPI int ice_unwritable_min_checks_or_default() const;
29
30 MCAPI int ice_unwritable_timeout_or_default() const;
31
32 MCAPI int receiving_switching_delay_or_default() const;
33
34 MCAPI int receiving_timeout_or_default() const;
35
36 MCAPI int regather_on_failed_networks_interval_or_default() const;
37
38 MCAPI int stable_writable_connection_ping_interval_or_default() const;
39
40 MCAPI int stun_keepalive_interval_or_default() const;
41
42 MCAPI ~IceConfig();
43 // NOLINTEND
44
45public:
46 // constructor thunks
47 // NOLINTBEGIN
48 MCAPI void* $ctor();
49
50 MCAPI void* $ctor(int, int, ::cricket::ContinualGatheringPolicy, bool, int, bool, int, int);
51 // NOLINTEND
52
53public:
54 // destructor thunk
55 // NOLINTBEGIN
56 MCAPI void $dtor();
57 // NOLINTEND
58};
59
60} // namespace cricket
Definition IceConfig.h:10