blob: e4c5eeaea9353b99a0bb41304dccffe4e2e2dc1a [file] [log] [blame]
// Copyright 2018 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.overnet.protocol;
using zx;
[Transport="OvernetStream"]
interface Peer {
Fork(ForkFrame fork);
Ping() -> (zx.time response);
UpdateNodeStatus(NodeStatus node);
UpdateNodeDescription(PeerDescription desc);
UpdateLinkStatus(LinkStatus link);
};