⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wcmd.h

📁 VIA VT6655 x86下的Linux Source Code
💻 H
字号:
/*
 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
 * All rights reserved.
 *
 * This software is copyrighted by and is the sole property of
 * VIA Networking Technologies, Inc. This software may only be used
 * in accordance with the corresponding license agreement. Any unauthorized
 * use, duplication, transmission, distribution, or disclosure of this
 * software is expressly forbidden.
 *
 * This software is provided by VIA Networking Technologies, Inc. "as is"
 * and any express or implied warranties, including, but not limited to, the
 * implied warranties of merchantability and fitness for a particular purpose
 * are disclaimed. In no event shall VIA Networking Technologies, Inc.
 * be liable for any direct, indirect, incidental, special, exemplary, or
 * consequential damages. 
 *
 * File: wcmd.h
 *
 * Purpose: Handles the management command interface functions
 *
 * Author: Lyndon Chen
 *
 * Date: May 8, 2002
 *
 */ 
 
#ifndef __WCMD_H__
#define __WCMD_H__

#if !defined(__TTYPE_H__)
#include "ttype.h"
#endif
#if !defined(__80211HDR_H__)
#include "80211hdr.h"
#endif
#if !defined(__80211MGR_H__)
#include "80211mgr.h"
#endif

/*---------------------  Export Definitions -------------------------*/



#define AUTHENTICATE_TIMEOUT   1000 //ms
#define ASSOCIATE_TIMEOUT      1000 //ms

// Command code
typedef enum tagCMD_CODE {
    WLAN_CMD_BSSID_SCAN,
    WLAN_CMD_SSID,
    WLAN_CMD_DISASSOCIATE,
    WLAN_CMD_RX_PSPOLL,
    WLAN_CMD_RUN_AP,
    WLAN_CMD_RADIO,
    WLAN_CMD_CHANGE_BBSENSITIVITY    
} CMD_CODE, DEF* PCMD_CODE;

#define CMD_Q_SIZE              32


// Command code
typedef enum tagCMD_STATUS {

    CMD_STATUS_SUCCESS,
    CMD_STATUS_FAILURE,
    CMD_STATUS_RESOURCES,
    CMD_STATUS_TIMEOUT,
    CMD_STATUS_PENDING

} CMD_STATUS, DEF* PCMD_STATUS;


typedef struct tagCMD_ITEM {
    CMD_CODE eCmd;
    BYTE     abyCmdDesireSSID[WLAN_IEHDR_LEN + WLAN_SSID_MAXLEN + 1];
    BOOL     bNeedRadioOFF;
    WORD     wDeAuthenReason;
    BOOL     bRadioCmd;
    BOOL     bForceSCAN;       
} CMD_ITEM, DEF* PCMD_ITEM;

// Command state
typedef enum tagCMD_STATE {
    WLAN_CMD_SCAN_START,
    WLAN_CMD_SCAN_END,
    WLAN_CMD_DISASSOCIATE_START,
    WLAN_CMD_SSID_START,
    WLAN_AUTHENTICATE_WAIT,
    WLAN_ASSOCIATE_WAIT,
    WLAN_DISASSOCIATE_WAIT,
    WLAN_CMD_TX_PSPACKET_START,
    WLAN_CMD_AP_MODE_START,
    WLAN_CMD_RADIO_START,
    WLAN_CMD_CHECK_BBSENSITIVITY_CHANGE,    
    WLAN_CMD_IDLE
} CMD_STATE, DEF* PCMD_STATE;


/*---------------------  Export Classes  ----------------------------*/
    
/*---------------------  Export Variables  --------------------------*/


/*---------------------  Export Types  ------------------------------*/


/*---------------------  Export Functions  --------------------------*/


    
VOID
vCommandTimer (
    IN  HANDLE hDeviceContext
    );

BOOL bClearBSSID_SCAN(
    IN HANDLE hDeviceContext
    );
    
BOOL
bScheduleCommand(
    IN HANDLE      hDeviceContext,    
    IN CMD_CODE    eCommand,
    IN PBYTE       pbyItem0
    );
    
VOID
vCommandTimerWait(
    IN HANDLE      hDeviceContext,    
    IN UINT MSecond
    );    

#endif //__WCMD_H__

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -