• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2020-2021 Huawei Device Co., Ltd.
3  *
4  * HDF is dual licensed: you can use it either under the terms of
5  * the GPL, or the BSD license, at your option.
6  * See the LICENSE file in the root of this repository for complete details.
7  */
8 
9 #ifndef WAL_MAC80211_STA_H_
10 #define WAL_MAC80211_STA_H_
11 
12 #include "wifi_mac80211_ops.h"
13 
14 int32_t HdfStartScan(NetDevice *netdev, struct WlanScanRequest *scanParam);
15 int32_t HdfAbortScan(NetDevice *netDev);
16 int32_t HdfConnect(NetDevice *netDev, WlanConnectParams *param);
17 int32_t HdfDisconnect(NetDevice *netDev, uint16_t reasonCode);
18 int32_t HdfSetScanningMacAddress(NetDevice *netDev, unsigned char *mac, uint32_t len);
19 #endif
20