mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
27 lines
826 B
C
27 lines
826 B
C
|
// Copyright 2017 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.
|
||
|
|
||
|
#ifndef NET_INTERFACES_IP_ADDRESS_STRUCT_TRAITS_H_
|
||
|
#define NET_INTERFACES_IP_ADDRESS_STRUCT_TRAITS_H_
|
||
|
|
||
|
#include "base/containers/span.h"
|
||
|
#include "mojo/public/cpp/bindings/struct_traits.h"
|
||
|
#include "net/base/ip_address.h"
|
||
|
#include "net/interfaces/ip_address.mojom.h"
|
||
|
|
||
|
namespace mojo {
|
||
|
template <>
|
||
|
struct StructTraits<net::interfaces::IPAddressDataView, net::IPAddress> {
|
||
|
static base::span<const uint8_t> address_bytes(
|
||
|
const net::IPAddress& ip_address) {
|
||
|
return ip_address.bytes();
|
||
|
}
|
||
|
|
||
|
static bool Read(net::interfaces::IPAddressDataView obj, net::IPAddress* out);
|
||
|
};
|
||
|
|
||
|
} // namespace mojo
|
||
|
|
||
|
#endif // NET_INTERFACES_IP_ADDRESS_STRUCT_TRAITS_H_
|