// Called as part of destroying the owning PeerConnection. void PrepareForShutdown();
// Called from PeerConnection::SetupDataChannelTransport_n void SetupDataChannelTransport_n(DataChannelTransportInterface* transport); // Called from PeerConnection::TeardownDataChannelTransport_n void TeardownDataChannelTransport_n(RTCError error);
// Called from PeerConnection::OnTransportChanged // to make required changes to datachannels' transports. void OnTransportChanged(
DataChannelTransportInterface* data_channel_transport);
// Called from PeerConnection::GetDataChannelStats on the signaling thread.
std::vector<DataChannelStats> GetDataChannelStats() const;
// Creates channel and adds it to the collection of DataChannels that will // be offered in a SessionDescription, and wraps it in a proxy object.
RTCErrorOr<scoped_refptr<DataChannelInterface>>
InternalCreateDataChannelWithProxy(absl::string_view label, const InternalDataChannelInit& config); void AllocateSctpSids(SSLRole role);
// Check if data channels are currently tracked. Used to decide whether a // rejected m=application section should be reoffered. bool HasDataChannels() const;
// At some point in time, a data channel has existed. bool HasUsedDataChannels() const;
// Creates a new SctpDataChannel object on the network thread.
RTCErrorOr<scoped_refptr<SctpDataChannel>> CreateDataChannel(
absl::string_view label,
InternalDataChannelInit& config) RTC_RUN_ON(network_thread());
// Parses and handles open messages. Returns true if the message is an open // message and should be considered to be handled, false otherwise. bool HandleOpenMessage_n(int channel_id,
DataMessageType type, const CopyOnWriteBuffer& buffer)
RTC_RUN_ON(network_thread()); // Called when a valid data channel OPEN message is received. void OnDataChannelOpenMessage(scoped_refptr<SctpDataChannel> channel, bool ready_to_send)
RTC_RUN_ON(signaling_thread());
// Accepts a `StreamId` which may be pre-negotiated or unassigned. For // pre-negotiated sids, attempts to reserve the sid in the allocation pool, // for unassigned sids attempts to generate a new sid if possible. Returns // RTCError::OK() if the sid is reserved (and may have been generated) or // if not enough information exists to generate a sid, in which case the sid // will still be unassigned upon return, but will be assigned later. // If the pool has been exhausted or a sid has already been reserved, an // error will be returned.
RTCError ReserveOrAllocateSid(std::optional<StreamId>& sid,
std::optional<SSLRole> fallback_ssl_role)
RTC_RUN_ON(network_thread());
// Called when all data channels need to be notified of a transport channel // (calls OnTransportChannelCreated on the signaling thread). void NotifyDataChannelsOfTransportCreated();
// Plugin transport used for data channels. Pointer may be accessed and // checked from any thread, but the object may only be touched on the // network thread.
DataChannelTransportInterface* data_channel_transport_
RTC_GUARDED_BY(network_thread()) = nullptr;
SctpSidAllocator sid_allocator_ RTC_GUARDED_BY(network_thread());
std::vector<scoped_refptr<SctpDataChannel>> sctp_data_channels_n_
RTC_GUARDED_BY(network_thread());
enum class DataChannelUsage : uint8_t {
kNeverUsed = 0,
kHaveBeenUsed,
kInUse
};
DataChannelUsage channel_usage_ RTC_GUARDED_BY(signaling_thread()) =
DataChannelUsage::kNeverUsed;
// Cached value of max-message-size.
std::optional<int> max_message_size_ RTC_GUARDED_BY(network_thread());
// Owning PeerConnection.
PeerConnectionInternal* const pc_; // The weak pointers must be dereferenced and invalidated on the network // thread only.
WeakPtrFactory<DataChannelController> weak_factory_
RTC_GUARDED_BY(network_thread()){this};
ScopedTaskSafety signaling_safety_;
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.