/* * Copyright (c) 2021 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 NET_DCSCTP_COMMON_INTERNAL_TYPES_H_ #define NET_DCSCTP_COMMON_INTERNAL_TYPES_H_ #include #include #include "net/dcsctp/public/types.h" #include "rtc_base/strong_alias.h" namespace dcsctp { // Stream Sequence Number (SSN) using SSN = webrtc::StrongAlias; // Message Identifier (MID) using MID = webrtc::StrongAlias; // Fragment Sequence Number (FSN) using FSN = webrtc::StrongAlias; // Transmission Sequence Number (TSN) using TSN = webrtc::StrongAlias; // Reconfiguration Request Sequence Number using ReconfigRequestSN = webrtc::StrongAlias; // Verification Tag, used for packet validation. using VerificationTag = webrtc::StrongAlias; // Tie Tag, used as a nonce when connecting. using TieTag = webrtc::StrongAlias; // An ID for every outgoing message, to correlate outgoing data chunks with the // message it was carved from. using OutgoingMessageId = webrtc::StrongAlias; } // namespace dcsctp #endif // NET_DCSCTP_COMMON_INTERNAL_TYPES_H_