chromium/components/openscreen_platform/network_util.cc

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/openscreen_platform/network_util.h"

#include <array>
#include <memory>

#include "base/notreached.h"
#include "net/base/address_family.h"
#include "net/base/ip_endpoint.h"
#include "net/base/net_errors.h"

namespace openscreen_platform {

const net::IPAddress ToNetAddress(const openscreen::IPAddress& address) {}

const net::IPEndPoint ToNetEndPoint(const openscreen::IPEndpoint& endpoint) {}

openscreen::IPAddress::Version ToOpenScreenVersion(
    const net::AddressFamily family) {}

const openscreen::IPEndpoint ToOpenScreenEndPoint(
    const net::IPEndPoint& endpoint) {}

}  // namespace openscreen_platform