// Copyright 2023 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.reloaddriver.test; | |
using zx; | |
const MAX_FROM_LENGTH uint64 = 32; | |
@discoverable | |
closed protocol Waiter { | |
strict Ack(struct { | |
from_node string:MAX_FROM_LENGTH; | |
from_name string:MAX_FROM_LENGTH; | |
status zx.Status; | |
}); | |
}; |