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()9quic::IpAddressFamily AddressFamilyUnderTest() { 10 return AddressFamilyUnderTestImpl(); 11 } 12 TestLoopback4()13quic::QuicIpAddress TestLoopback4() { return TestLoopback4Impl(); } 14 TestLoopback6()15quic::QuicIpAddress TestLoopback6() { return TestLoopback6Impl(); } 16 TestLoopback()17quic::QuicIpAddress TestLoopback() { return TestLoopbackImpl(); } 18 TestLoopback(int index)19quic::QuicIpAddress TestLoopback(int index) { return TestLoopbackImpl(index); } 20 21 } // namespace quiche 22