21 lines
470 B
C
21 lines
470 B
C
|
/*
|
||
|
* Copyright 2010, Haiku, Inc. All Rights Reserved.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*
|
||
|
* Authors:
|
||
|
* Axel Dörfler, axeld@pinc-software.de
|
||
|
*/
|
||
|
#ifndef _WPA_SUPPLICANT_H
|
||
|
#define _WPA_SUPPLICANT_H
|
||
|
|
||
|
|
||
|
#define kWPASupplicantSignature "application/x-vnd.malinen-wpa_supplicant"
|
||
|
|
||
|
#define kMsgWPAStartWatching 'WPAw'
|
||
|
#define kMsgWPAStopWatching 'WPAs'
|
||
|
#define kMsgWPAJoinNetwork 'WPAj'
|
||
|
#define kMsgWPALeaveNetwork 'WPAl'
|
||
|
|
||
|
|
||
|
#endif // _WPA_SUPPLICANT_H
|