blob: ce82fbb05ed165bde1b4e9ed7902dfdbaba7d467 [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;
/// Identifies a single overnet stream between two processes on the Overnet mesh
struct StreamId {
uint64 id;
};
/// Address of a node on the overlay network.
struct NodeId {
uint64 id;
};
/// Node-local link label
using LinkId = uint64;