/* * Copyright 2018 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree.
*/
// This implementation wraps a cricket::DtlsTransport, and takes // ownership of it. class DtlsTransport : public DtlsTransportInterface { public: // This object must be constructed and updated on a consistent thread, // the same thread as the one the cricket::DtlsTransportInternal object // lives on. // The Information() function can be called from a different thread, // such as the signalling thread. explicit DtlsTransport(
std::unique_ptr<cricket::DtlsTransportInternal> internal);
// Called when changing `info_`. We only change the values from the // `owner_thread_` (a.k.a. the network thread). void set_info(DtlsTransportInformation&& info) RTC_RUN_ON(owner_thread_) {
MutexLock lock(&lock_);
info_ = std::move(info);
}
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.