// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "remoting/base/port_range.h" #include <limits.h> #include <stddef.h> #include <stdlib.h> #include "base/strings/string_number_conversions.h" #include "base/strings/string_util.h" namespace remoting { bool PortRange::operator==(const PortRange&) const = default; void PortRange::reset() { … } bool PortRange::Parse(const std::string& port_range, PortRange* result) { … } std::ostream& operator<<(std::ostream& os, const PortRange& port_range) { … } } // namespace remoting