~ubuntu-branches/ubuntu/saucy/wpasupplicant/saucy

« back to all changes in this revision

Viewing changes to src/ap/ap_mlme.h

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2010-11-22 09:43:43 UTC
  • mfrom: (1.1.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20101122094343-qgsxaojvmswfri77
Tags: 0.7.3-0ubuntu1
* Get wpasupplicant 0.7.3 from Debian's SVN. Leaving 0.7.3-1 as unreleased
  for now.
* Build-Depend on debhelper 8, since the packaging from Debian uses compat 8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * hostapd / IEEE 802.11 MLME
 
3
 * Copyright 2003, Jouni Malinen <j@w1.fi>
 
4
 * Copyright 2003-2004, Instant802 Networks, Inc.
 
5
 * Copyright 2005-2006, Devicescape Software, Inc.
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License version 2 as
 
9
 * published by the Free Software Foundation.
 
10
 *
 
11
 * Alternatively, this software may be distributed under the terms of BSD
 
12
 * license.
 
13
 *
 
14
 * See README and COPYING for more details.
 
15
 */
 
16
 
 
17
#ifndef MLME_H
 
18
#define MLME_H
 
19
 
 
20
void mlme_authenticate_indication(struct hostapd_data *hapd,
 
21
                                  struct sta_info *sta);
 
22
 
 
23
void mlme_deauthenticate_indication(struct hostapd_data *hapd,
 
24
                                    struct sta_info *sta, u16 reason_code);
 
25
 
 
26
void mlme_associate_indication(struct hostapd_data *hapd,
 
27
                               struct sta_info *sta);
 
28
 
 
29
void mlme_reassociate_indication(struct hostapd_data *hapd,
 
30
                                 struct sta_info *sta);
 
31
 
 
32
void mlme_disassociate_indication(struct hostapd_data *hapd,
 
33
                                  struct sta_info *sta, u16 reason_code);
 
34
 
 
35
void mlme_michaelmicfailure_indication(struct hostapd_data *hapd,
 
36
                                       const u8 *addr);
 
37
 
 
38
void mlme_deletekeys_request(struct hostapd_data *hapd, struct sta_info *sta);
 
39
 
 
40
#endif /* MLME_H */