1 /* $OpenBSD: btdev.h,v 1.2 2007/07/27 20:22:12 xsa Exp $ */
2 /* $NetBSD: btdev.h,v 1.6 2007/04/21 06:15:22 plunky Exp $ */
3
4 /*-
5 * Copyright (c) 2006 Itronix Inc.
6 * All rights reserved.
7 *
8 * Written by Iain Hibbert for Itronix Inc.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. The name of Itronix Inc. may not be used to endorse
19 * or promote products derived from this software without specific
20 * prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY ITRONIX INC. ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
24 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
25 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ITRONIX INC. BE LIABLE FOR ANY
26 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
27 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
29 * ON ANY THEORY OF LIABILITY, WHETHER IN
30 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 * POSSIBILITY OF SUCH DAMAGE.
33 */
34
35 #ifndef _DEV_BLUETOOTH_BTDEV_H_
36 #define _DEV_BLUETOOTH_BTDEV_H_
37
38 /* btdev attach/detach ioctl's */
39 #define BTDEV_ATTACH _IOW('b', 14, struct plistref)
40 #define BTDEV_DETACH _IOW('b', 15, struct plistref)
41
42 /* btdev properties */
43 #define BTDEVtype "device-type"
44 #define BTDEVladdr "local-bdaddr"
45 #define BTDEVraddr "remote-bdaddr"
46 #define BTDEVservice "service-name"
47 #define BTDEVmode "link-mode"
48 #define BTDEVauth "auth"
49 #define BTDEVencrypt "encrypt"
50 #define BTDEVsecure "secure"
51
52 #ifdef _KERNEL
53 struct btdev {
54 struct device sc_dev;
55 LIST_ENTRY(btdev) sc_next;
56 };
57 #endif /* _KERNEL */
58
59 #endif /* _DEV_BLUETOOTH_BTDEV_H_ */