| // 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>; | |
| }; |