// Copyright 2022 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "quiche/common/quiche_ip_address_family.h" #include "quiche/common/platform/api/quiche_bug_tracker.h" #if defined(_WIN32) #include <winsock2.h> #else #include <sys/socket.h> #endif // defined(_WIN32) namespace quiche { int ToPlatformAddressFamily(IpAddressFamily family) { … } IpAddressFamily FromPlatformAddressFamily(int family) { … } } // namespace quiche