chromium/third_party/webrtc/net/dcsctp/public/text_pcap_packet_observer.cc

/*
 *  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.
 */
#include "net/dcsctp/public/text_pcap_packet_observer.h"

#include "api/array_view.h"
#include "net/dcsctp/public/types.h"
#include "rtc_base/logging.h"
#include "rtc_base/strings/string_builder.h"

namespace dcsctp {

void TextPcapPacketObserver::OnSentPacket(
    dcsctp::TimeMs now,
    rtc::ArrayView<const uint8_t> payload) {}

void TextPcapPacketObserver::OnReceivedPacket(
    dcsctp::TimeMs now,
    rtc::ArrayView<const uint8_t> payload) {}

void TextPcapPacketObserver::PrintPacket(
    absl::string_view prefix,
    absl::string_view socket_name,
    dcsctp::TimeMs now,
    rtc::ArrayView<const uint8_t> payload) {}

}  // namespace dcsctp