blob: e8e2d9b7a0f4326f5d0e7a2895c2decd0ce4d36a [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_HT_H_
#define GARNET_LIB_WLAN_MLME_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 // GARNET_LIB_WLAN_MLME_INCLUDE_WLAN_MLME_HT_H_