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

The DcSctpTransport will soon use field trials to conditionally enable some options. And overall, there is a migration project to start using the Environment and this CL is in that direction, also setting the boundary; The dcSCTP library should not depend on it. But the transport is allowed to. Bug: webrtc:14997 Change-Id: I1f3c2c0d8dd7bdc698dd1d58bde7651b682bcba4 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/341480 Commit-Queue: Victor Boivie <boivie@webrtc.org> Reviewed-by: Danil Chapovalov <danilchap@webrtc.org> Reviewed-by: Harald Alvestrand <hta@webrtc.org> Cr-Commit-Position: refs/heads/main@{#41872}
45 lines
1.5 KiB
C++
45 lines
1.5 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>
|
|
|
|
#include "api/environment/environment.h"
|
|
|
|
// 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(
|
|
const Environment& env,
|
|
rtc::PacketTransportInternal* channel) = 0;
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // API_TRANSPORT_SCTP_TRANSPORT_FACTORY_INTERFACE_H_
|