2009-11-29 21:09:33 +03:00
|
|
|
/*
|
2010-11-11 00:54:47 +03:00
|
|
|
* Copyright 2009-2010, Haiku, Inc. All Rights Reserved.
|
2009-11-29 21:09:33 +03:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _BOSII_DRIVER_H_
|
|
|
|
#define _BOSII_DRIVER_H_
|
|
|
|
|
|
|
|
|
2010-11-11 00:54:47 +03:00
|
|
|
#include <ether_driver.h>
|
|
|
|
|
|
|
|
|
2009-11-29 21:09:33 +03:00
|
|
|
#define ETHER_OP_CODES_END (ETHER_GET_LINK_STATE + 1)
|
|
|
|
|
2010-11-11 00:54:47 +03:00
|
|
|
// TODO: those will be removed again
|
2009-11-29 21:09:33 +03:00
|
|
|
/* 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_ */
|