xref: /aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/common/platform/api/quiche_test_loopback.cc (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1 // Copyright (c) 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "quiche/common/platform/api/quiche_test_loopback.h"
6 
7 namespace quiche {
8 
AddressFamilyUnderTest()9 quic::IpAddressFamily AddressFamilyUnderTest() {
10   return AddressFamilyUnderTestImpl();
11 }
12 
TestLoopback4()13 quic::QuicIpAddress TestLoopback4() { return TestLoopback4Impl(); }
14 
TestLoopback6()15 quic::QuicIpAddress TestLoopback6() { return TestLoopback6Impl(); }
16 
TestLoopback()17 quic::QuicIpAddress TestLoopback() { return TestLoopbackImpl(); }
18 
TestLoopback(int index)19 quic::QuicIpAddress TestLoopback(int index) { return TestLoopbackImpl(index); }
20 
21 }  // namespace quiche
22