blob: db61fdda5ad2c6efba0792658d11bf0f139de21a [file] [log] [blame]
pbos@webrtc.org119a1cc2013-08-20 13:14:071/*
2 * Copyright (c) 2013 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 */
Mirko Bonadei92ea95e2017-09-15 04:47:3110#include "test/null_transport.h"
pbos@webrtc.org119a1cc2013-08-20 13:14:0711
12namespace webrtc {
13namespace test {
14
Harald Alvestrandd43af912023-08-15 11:41:4515bool NullTransport::SendRtp(rtc::ArrayView<const uint8_t> packet,
stefan1d8a5062015-10-02 10:39:3316 const PacketOptions& options) {
pbos@webrtc.org119a1cc2013-08-20 13:14:0717 return true;
18}
19
Harald Alvestrandd43af912023-08-15 11:41:4520bool NullTransport::SendRtcp(rtc::ArrayView<const uint8_t> packet) {
pbos@webrtc.org119a1cc2013-08-20 13:14:0721 return true;
22}
23
24} // namespace test
25} // namespace webrtc