blob: 8e0208fdb4becc86984c798044210c082ccc786a [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.
#ifndef GARNET_LIB_WLAN_MLME_INCLUDE_WLAN_MLME_MESH_WRITE_MP_ACTION_H_
#define GARNET_LIB_WLAN_MLME_INCLUDE_WLAN_MLME_MESH_WRITE_MP_ACTION_H_
#include <fuchsia/wlan/mlme/cpp/fidl.h>
#include <wlan/common/buffer_writer.h>
#include <wlan/common/macaddr.h>
#include <wlan/mlme/mac_header_writer.h>
namespace wlan {
void WriteMpOpenActionFrame(BufferWriter* w, const MacHeaderWriter& mac_header_writer,
const ::fuchsia::wlan::mlme::MeshPeeringOpenAction& action);
void WriteMpConfirmActionFrame(BufferWriter* w, const MacHeaderWriter& mac_header_writer,
const ::fuchsia::wlan::mlme::MeshPeeringConfirmAction& action);
} // namespace wlan
#endif // GARNET_LIB_WLAN_MLME_INCLUDE_WLAN_MLME_MESH_WRITE_MP_ACTION_H_