LeviLamina
Loading...
Searching...
No Matches
NetworkStateEstimator.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace webrtc { struct NetworkRouteChange; }
8namespace webrtc { struct NetworkStateEstimate; }
9namespace webrtc { struct PacketResult; }
10namespace webrtc { struct TransportPacketsFeedback; }
11// clang-format on
12
13namespace webrtc {
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 virtual ::std::optional<::webrtc::NetworkStateEstimate> GetCurrentEstimate() = 0;
20
21 virtual void OnTransportPacketsFeedback(::webrtc::TransportPacketsFeedback const&) = 0;
22
23 virtual void OnReceivedPacket(::webrtc::PacketResult const&);
24
25 virtual void OnRouteChange(::webrtc::NetworkRouteChange const&) = 0;
26
27 virtual ~NetworkStateEstimator() = default;
28 // NOLINTEND
29
30public:
31 // virtual function thunks
32 // NOLINTBEGIN
33
34 // NOLINTEND
35};
36
37} // namespace webrtc
Definition NetworkStateEstimator.h:15
Definition NetworkRouteChange.h:7
Definition NetworkStateEstimate.h:7
Definition PacketResult.h:7
Definition TransportPacketsFeedback.h:12