blob: 2e8c00a6484f09b6e636fe861859cae0eb495dc7 [file] [log] [blame]
/*
* Copyright 2017 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 "p2p/base/packet_transport_internal.h"
#include "api/sequence_checker.h"
#include "rtc_base/network/received_packet.h"
namespace rtc {
PacketTransportInternal::PacketTransportInternal() = default;
PacketTransportInternal::~PacketTransportInternal() = default;
bool PacketTransportInternal::GetOption(rtc::Socket::Option opt, int* value) {
return false;
}
absl::optional<NetworkRoute> PacketTransportInternal::network_route() const {
return absl::optional<NetworkRoute>();
}
void PacketTransportInternal::NotifyPacketReceived(
const rtc::ReceivedPacket& packet) {
RTC_DCHECK_RUN_ON(&network_checker_);
if (!SignalReadPacket.is_empty()) {
// TODO(bugs.webrtc.org:15368): Replace with
// received_packet_callbacklist_.
int flags = 0;
if (packet.decryption_info() == rtc::ReceivedPacket::kSrtpEncrypted) {
flags = 1;
}
SignalReadPacket(
this, reinterpret_cast<const char*>(packet.payload().data()),
packet.payload().size(),
packet.arrival_time() ? packet.arrival_time()->us() : -1, flags);
} else {
received_packet_callback_list_.Send(this, packet);
}
}
} // namespace rtc