diff --git a/headers/private/net/bosii_driver.h b/headers/private/net/bosii_driver.h new file mode 100644 index 0000000000..5c81a5580a --- /dev/null +++ b/headers/private/net/bosii_driver.h @@ -0,0 +1,20 @@ +/* + * 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_ */