blob: 934d6a7531f68c91d4f1e9d38c3f611626ab7eb3 [file] [log] [blame]
// Copyright 2020 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.
library fuchsia.developer.remotecontrol;
using fuchsia.device;
using fuchsia.net;
table IdentifyHostResponse {
1: vector<fuchsia.net.Subnet>:MAX addresses;
2: string:fuchsia.device.DEVICE_NAME_MAX nodename;
};
enum IdentifyHostError : uint32 {
// Indicates that the attempt to list device network interfaces failed.
LIST_INTERFACES_FAILED = 1;
// Indicates that attempting to get the nodename of the target failed.
GET_DEVICE_NAME_FAILED = 2;
};