For now, old file forward include api/transport/ecn_marking.h Done in preparation for more usage of this enum when handling received RFC8888 feedback. Bug: webrtc:42225697 Change-Id: I022c2b7f1e7f986b24aa32b8911ad67c6640a5c0 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/366440 Reviewed-by: Danil Chapovalov <danilchap@webrtc.org> Reviewed-by: Harald Alvestrand <hta@webrtc.org> Commit-Queue: Per Kjellander <perkj@webrtc.org> Cr-Commit-Position: refs/heads/main@{#43282}
21 lines
695 B
C++
21 lines
695 B
C++
/*
|
|
* Copyright 2024 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 RTC_BASE_NETWORK_ECN_MARKING_H_
|
|
#define RTC_BASE_NETWORK_ECN_MARKING_H_
|
|
|
|
// // TODO: bugs.webrtc.org/42225697 - delete this file.
|
|
#include "api/transport/ecn_marking.h"
|
|
|
|
namespace rtc {
|
|
using ::webrtc::EcnMarking;
|
|
} // namespace rtc
|
|
|
|
#endif // RTC_BASE_NETWORK_ECN_MARKING_H_
|