blob: febcf3731defba17cf5e8e0e6786231af11fe493 [file] [log] [blame]
QUICHE teama6ef0a62019-03-07 20:34:33 -05001// 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 "net/third_party/quiche/src/quic/platform/api/quic_test_loopback.h"
6
7namespace quic {
8
9IpAddressFamily AddressFamilyUnderTest() {
10 return AddressFamilyUnderTestImpl();
11}
12
13QuicIpAddress TestLoopback4() {
14 return TestLoopback4Impl();
15}
16
17QuicIpAddress TestLoopback6() {
18 return TestLoopback6Impl();
19}
20
21QuicIpAddress TestLoopback() {
22 return TestLoopbackImpl();
23}
24
25QuicIpAddress TestLoopback(int index) {
26 return TestLoopbackImpl(index);
27}
28
29} // namespace quic