cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

mlme_osdep.h (1151B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2/******************************************************************************
      3 *
      4 * Copyright(c) 2007 - 2010 Realtek Corporation. All rights reserved.
      5 *
      6 * Modifications for inclusion into the Linux staging tree are
      7 * Copyright(c) 2010 Larry Finger. All rights reserved.
      8 *
      9 * Contact information:
     10 * WLAN FAE <wlanfae@realtek.com>
     11 * Larry Finger <Larry.Finger@lwfinger.net>
     12 *
     13 ******************************************************************************/
     14#ifndef	__MLME_OSDEP_H_
     15#define __MLME_OSDEP_H_
     16
     17#include "osdep_service.h"
     18#include "drv_types.h"
     19
     20void r8712_init_mlme_timer(struct _adapter *padapter);
     21void r8712_os_indicate_disconnect(struct _adapter *adapter);
     22void r8712_os_indicate_connect(struct _adapter *adapter);
     23void r8712_report_sec_ie(struct _adapter *adapter, u8 authmode, u8 *sec_ie);
     24int r8712_recv_indicatepkts_in_order(struct _adapter *adapter,
     25				     struct recv_reorder_ctrl *precvreorder_ctrl,
     26				     int bforced);
     27void r8712_indicate_wx_assoc_event(struct _adapter *padapter);
     28void r8712_indicate_wx_disassoc_event(struct _adapter *padapter);
     29
     30#endif	/*_MLME_OSDEP_H_*/
     31