blob: d541bcb2e5b0e07730b26007f550b8799784b1ef [file] [log] [blame]
// Copyright 2020 The Chromium OS 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 DIAGNOSTICS_CROS_HEALTHD_ROUTINES_LAN_CONNECTIVITY_LAN_CONNECTIVITY_H_
#define DIAGNOSTICS_CROS_HEALTHD_ROUTINES_LAN_CONNECTIVITY_LAN_CONNECTIVITY_H_
#include <memory>
#include "diagnostics/cros_healthd/network_diagnostics/network_diagnostics_adapter.h"
#include "diagnostics/cros_healthd/routines/diag_routine.h"
namespace diagnostics {
// Status messages reported by the LAN connectivity routine.
extern const char kLanConnectivityRoutineNoProblemMessage[];
extern const char kLanConnectivityRoutineProblemMessage[];
extern const char kLanConnectivityRoutineNotRunMessage[];
std::unique_ptr<DiagnosticRoutine> CreateLanConnectivityRoutine(
NetworkDiagnosticsAdapter* network_diagnostics_adapter);
} // namespace diagnostics
#endif // DIAGNOSTICS_CROS_HEALTHD_ROUTINES_LAN_CONNECTIVITY_LAN_CONNECTIVITY_H_