blob: 63039e8b6307578192b6ddb964e2f4a5f46da2e0 [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.routingtablefuzzer;
using fuchsia.overnet.protocol;
struct RoutingTableFuzzPlan {
vector<RoutingTableAction> actions;
};
struct Void {};
xunion RoutingTableAction {
uint64 step_time;
fuchsia.overnet.protocol.NodeStatus update_node;
fuchsia.overnet.protocol.LinkStatus update_link;
Void update_flush;
};