You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.6 KiB
48 lines
1.6 KiB
// Copyright 2018 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 "osp/public/service_info.h"
|
|
|
|
#include <algorithm>
|
|
#include <utility>
|
|
|
|
#include "util/osp_logging.h"
|
|
|
|
namespace openscreen {
|
|
namespace osp {
|
|
|
|
bool ServiceInfo::operator==(const ServiceInfo& other) const {
|
|
return (service_id == other.service_id &&
|
|
friendly_name == other.friendly_name &&
|
|
network_interface_index == other.network_interface_index &&
|
|
v4_endpoint == other.v4_endpoint && v6_endpoint == other.v6_endpoint);
|
|
}
|
|
|
|
bool ServiceInfo::operator!=(const ServiceInfo& other) const {
|
|
return !(*this == other);
|
|
}
|
|
|
|
bool ServiceInfo::Update(std::string new_friendly_name,
|
|
NetworkInterfaceIndex new_network_interface_index,
|
|
const IPEndpoint& new_v4_endpoint,
|
|
const IPEndpoint& new_v6_endpoint) {
|
|
OSP_DCHECK(!new_v4_endpoint.address ||
|
|
IPAddress::Version::kV4 == new_v4_endpoint.address.version());
|
|
OSP_DCHECK(!new_v6_endpoint.address ||
|
|
IPAddress::Version::kV6 == new_v6_endpoint.address.version());
|
|
const bool changed =
|
|
(friendly_name != new_friendly_name) ||
|
|
(network_interface_index != new_network_interface_index) ||
|
|
(v4_endpoint != new_v4_endpoint) || (v6_endpoint != new_v6_endpoint);
|
|
|
|
friendly_name = std::move(new_friendly_name);
|
|
network_interface_index = new_network_interface_index;
|
|
v4_endpoint = new_v4_endpoint;
|
|
v6_endpoint = new_v6_endpoint;
|
|
return changed;
|
|
}
|
|
|
|
} // namespace osp
|
|
} // namespace openscreen
|