blob: 5d2531f42913922e4aeb0e0cd781c292412a00a3 [file] [log] [blame]
// Copyright 2017 The Fuchsia 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 GARNET_BIN_NETCONNECTOR_HOST_NAME_H_
#define GARNET_BIN_NETCONNECTOR_HOST_NAME_H_
#include <string>
namespace netconnector {
// Determines whether we have a NIC with a valid address.
bool NetworkIsReady();
// Gets the host name, possibly deduped using the host address.
std::string GetHostName();
} // namespace netconnector
#endif // GARNET_BIN_NETCONNECTOR_HOST_NAME_H_