| * 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(https://bugs.webrtc.org/15368): L4S support is slowly being developed. |
| // L4S Explicit Congestion Notification (ECN) . |
| // https://www.rfc-editor.org/rfc/rfc9331.html ECT stands for ECN-Capable |
| // Transport and CE stands for Congestion Experienced. |
| // ECT CE [Obsolete] RFC 2481 names for the ECN bits. |
| kNotEct = 0, // Not ECN-Capable Transport |
| kEct1 = 1, // ECN-Capable Transport |
| kEct0 = 2, // Not used by L4s (or webrtc.) |
| kCe = 3, // Congestion experienced |
| #endif // RTC_BASE_NETWORK_ECN_MARKING_H_ |