1 /* 2 * Copyright (c) 2021 The WebRTC project authors. All Rights Reserved. 3 * 4 * Use of this source code is governed by a BSD-style license 5 * that can be found in the LICENSE file in the root of the source 6 * tree. An additional intellectual property rights grant can be found 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 9 */ 10 #include "net/dcsctp/packet/parameter/heartbeat_info_parameter.h" 11 12 #include <stdint.h> 13 14 #include <string> 15 #include <type_traits> 16 #include <vector> 17 18 #include "absl/types/optional.h" 19 #include "api/array_view.h" 20 #include "net/dcsctp/packet/bounded_byte_reader.h" 21 #include "net/dcsctp/packet/bounded_byte_writer.h" 22 #include "net/dcsctp/packet/tlv_trait.h" 23 #include "rtc_base/strings/string_builder.h" 24 25 namespace dcsctp { 26 27 // https://tools.ietf.org/html/rfc4960#section-3.3.5 28 29 // 0 1 2 3 30 // 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 31 // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 32 // | Type = 4 | Chunk Flags | Heartbeat Length | 33 // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 34 // \ \ 35 // / Heartbeat Information TLV (Variable-Length) / 36 // \ \ 37 // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 38 constexpr int HeartbeatInfoParameter::kType; 39 Parse(rtc::ArrayView<const uint8_t> data)40absl::optional<HeartbeatInfoParameter> HeartbeatInfoParameter::Parse( 41 rtc::ArrayView<const uint8_t> data) { 42 absl::optional<BoundedByteReader<kHeaderSize>> reader = ParseTLV(data); 43 if (!reader.has_value()) { 44 return absl::nullopt; 45 } 46 return HeartbeatInfoParameter(reader->variable_data()); 47 } 48 SerializeTo(std::vector<uint8_t> & out) const49void HeartbeatInfoParameter::SerializeTo(std::vector<uint8_t>& out) const { 50 BoundedByteWriter<kHeaderSize> writer = AllocateTLV(out, info_.size()); 51 writer.CopyToVariableData(info_); 52 } 53 ToString() const54std::string HeartbeatInfoParameter::ToString() const { 55 rtc::StringBuilder sb; 56 sb << "Heartbeat Info parameter (info_length=" << info_.size() << ")"; 57 return sb.Release(); 58 } 59 60 } // namespace dcsctp 61