bluetooth.h (f68ec0c24755e5cdb779be6240925f2175311d84) | bluetooth.h (d5c003b4d1690e666dbab02bc8e705947baa848c) |
---|---|
1/* 2 BlueZ - Bluetooth protocol stack for Linux 3 Copyright (C) 2000-2001 Qualcomm Incorporated 4 5 Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com> 6 7 This program is free software; you can redistribute it and/or modify 8 it under the terms of the GNU General Public License version 2 as --- 40 unchanged lines hidden (view full) --- 49#define BTPROTO_AVDTP 7 50 51#define SOL_HCI 0 52#define SOL_L2CAP 6 53#define SOL_SCO 17 54#define SOL_RFCOMM 18 55 56#define BT_INFO(fmt, arg...) printk(KERN_INFO "Bluetooth: " fmt "\n" , ## arg) | 1/* 2 BlueZ - Bluetooth protocol stack for Linux 3 Copyright (C) 2000-2001 Qualcomm Incorporated 4 5 Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com> 6 7 This program is free software; you can redistribute it and/or modify 8 it under the terms of the GNU General Public License version 2 as --- 40 unchanged lines hidden (view full) --- 49#define BTPROTO_AVDTP 7 50 51#define SOL_HCI 0 52#define SOL_L2CAP 6 53#define SOL_SCO 17 54#define SOL_RFCOMM 18 55 56#define BT_INFO(fmt, arg...) printk(KERN_INFO "Bluetooth: " fmt "\n" , ## arg) |
57#define BT_DBG(fmt, arg...) printk(KERN_INFO "%s: " fmt "\n" , __FUNCTION__ , ## arg) 58#define BT_ERR(fmt, arg...) printk(KERN_ERR "%s: " fmt "\n" , __FUNCTION__ , ## arg) | 57#define BT_DBG(fmt, arg...) printk(KERN_INFO "%s: " fmt "\n" , __func__ , ## arg) 58#define BT_ERR(fmt, arg...) printk(KERN_ERR "%s: " fmt "\n" , __func__ , ## arg) |
59 60/* Connection and socket states */ 61enum { 62 BT_CONNECTED = 1, /* Equal to TCP_ESTABLISHED to make net code happy */ 63 BT_OPEN, 64 BT_BOUND, 65 BT_LISTEN, 66 BT_CONNECT, --- 115 unchanged lines hidden --- | 59 60/* Connection and socket states */ 61enum { 62 BT_CONNECTED = 1, /* Equal to TCP_ESTABLISHED to make net code happy */ 63 BT_OPEN, 64 BT_BOUND, 65 BT_LISTEN, 66 BT_CONNECT, --- 115 unchanged lines hidden --- |