53b11310d4
Bosii is a transcription of 802.11. It is a work-in-progress title to point out parts of the wlan stack which are still in an experimental state. For example the control codes within bosii_driver.h are moving targets. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34349 a95241bf-73f2-0310-859d-f6bbb57e9c96
21 lines
450 B
C
21 lines
450 B
C
/*
|
|
* Copyright 2009, Haiku, Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _BOSII_DRIVER_H_
|
|
#define _BOSII_DRIVER_H_
|
|
|
|
|
|
#define ETHER_OP_CODES_END (ETHER_GET_LINK_STATE + 1)
|
|
|
|
/* ioctl() opcodes a wlan driver should support */
|
|
enum {
|
|
BOSII_DEVICE = ETHER_OP_CODES_END,
|
|
BOSII_DETECT_NETWORKS,
|
|
BOSII_GET_DETECTED_NETWORKS,
|
|
BOSII_JOIN_NETWORK,
|
|
BOSII_GET_ASSOCIATED_NETWORK
|
|
};
|
|
|
|
#endif /* _BOSII_DRIVER_H_ */
|