blob: 37984f0c76f558c4f4357162f1f7e1b2b0bc087f [file] [log] [blame]
// Copyright 2019 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;
// Introduction packet sent on stream oriented links between Overnet nodes
table StreamSocketGreeting {
// Protocol identification string; different kinds of streams might choose a different value here
1: string:32 magic_string;
// Overnet NodeId of the sender
2: NodeId node_id;
// Sender's LinkId for this link
3: LinkId local_link_id;
};