blob: c72d9b7fb5e5d30ee94f5ade78f0cab17131af9f [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 SRC_CONNECTIVITY_WLAN_LIB_MLME_CPP_INCLUDE_WLAN_MLME_HT_H_
#define SRC_CONNECTIVITY_WLAN_LIB_MLME_CPP_INCLUDE_WLAN_MLME_HT_H_
#include <wlan/common/element.h>
namespace wlan {
struct HtConfig {
bool ready;
bool cbw_40_rx_ready;
bool cbw_40_tx_ready;
};
HtCapabilities BuildHtCapabilities(const HtConfig& config);
HtOperation BuildHtOperation(const wlan_channel_t& chan);
} // namespace wlan
#endif // SRC_CONNECTIVITY_WLAN_LIB_MLME_CPP_INCLUDE_WLAN_MLME_HT_H_