mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +01:00

Bug: webrtc:12338 Change-Id: Ib97b2c3d64dbd895f261ffa76a2e885bd934a87f Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/226940 Reviewed-by: Harald Alvestrand <hta@webrtc.org> Commit-Queue: Artem Titov <titovartem@webrtc.org> Cr-Commit-Position: refs/heads/master@{#34554}
42 lines
1.4 KiB
C++
42 lines
1.4 KiB
C++
/*
|
|
* Copyright 2020 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.
|
|
*/
|
|
|
|
#ifndef API_TRANSPORT_SCTP_TRANSPORT_FACTORY_INTERFACE_H_
|
|
#define API_TRANSPORT_SCTP_TRANSPORT_FACTORY_INTERFACE_H_
|
|
|
|
#include <memory>
|
|
|
|
// These classes are not part of the API, and are treated as opaque pointers.
|
|
namespace cricket {
|
|
class SctpTransportInternal;
|
|
} // namespace cricket
|
|
|
|
namespace rtc {
|
|
class PacketTransportInternal;
|
|
} // namespace rtc
|
|
|
|
namespace webrtc {
|
|
|
|
// Factory class which can be used to allow fake SctpTransports to be injected
|
|
// for testing. An application is not intended to implement this interface nor
|
|
// 'cricket::SctpTransportInternal' because SctpTransportInternal is not
|
|
// guaranteed to remain stable in future WebRTC versions.
|
|
class SctpTransportFactoryInterface {
|
|
public:
|
|
virtual ~SctpTransportFactoryInterface() = default;
|
|
|
|
// Create an SCTP transport using `channel` for the underlying transport.
|
|
virtual std::unique_ptr<cricket::SctpTransportInternal> CreateSctpTransport(
|
|
rtc::PacketTransportInternal* channel) = 0;
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // API_TRANSPORT_SCTP_TRANSPORT_FACTORY_INTERFACE_H_
|