blob: 484996cd986d8f5467041683ec32bb3538ef0894 [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.wlan.mesh;
using fuchsia.wlan.ieee80211 as ieee80211;
// This file is shared between SME and MLME.
type MeshPath = struct {
dest_address ieee80211.MacAddr;
next_hop ieee80211.MacAddr;
metric uint32;
};
type MeshPathTable = struct {
paths vector<MeshPath>;
};