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
9    published by the Free Software Foundation;
10 
11    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
12    OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
14    IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
15    CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
16    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18    OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 
20    ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
21    COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
22    SOFTWARE IS DISCLAIMED.
23 */
24 
25 /*
26  *  $Id: sco.h,v 1.1.1.1 2002/03/08 21:03:15 maxk Exp $
27  */
28 
29 #ifndef __SCO_H
30 #define __SCO_H
31 
32 /* SCO defaults */
33 #define SCO_DEFAULT_MTU 	500
34 #define SCO_DEFAULT_FLUSH_TO	0xFFFF
35 
36 #define SCO_CONN_TIMEOUT 	(HZ * 40)
37 #define SCO_DISCONN_TIMEOUT 	(HZ * 2)
38 #define SCO_CONN_IDLE_TIMEOUT	(HZ * 60)
39 
40 /* SCO socket address */
41 struct sockaddr_sco {
42 	sa_family_t	sco_family;
43 	bdaddr_t	sco_bdaddr;
44 };
45 
46 /* set/get sockopt defines */
47 #define SCO_OPTIONS  0x01
48 struct sco_options {
49 	__u16 mtu;
50 };
51 
52 #define SCO_CONNINFO  0x02
53 struct sco_conninfo {
54 	__u16 hci_handle;
55 };
56 
57 /* ---- SCO connections ---- */
58 struct sco_conn {
59 	struct hci_conn	*hcon;
60 
61 	bdaddr_t 	*dst;
62 	bdaddr_t 	*src;
63 
64 	spinlock_t	lock;
65 	struct sock 	*sk;
66 
67 	unsigned int    mtu;
68 };
69 
70 #define sco_conn_lock(c)	spin_lock(&c->lock);
71 #define sco_conn_unlock(c)	spin_unlock(&c->lock);
72 
73 /* ----- SCO socket info ----- */
74 #define sco_pi(sk)   ((struct sco_pinfo *) &sk->tp_pinfo)
75 
76 struct sco_pinfo {
77 	__u32		flags;
78 	struct sco_conn	*conn;
79 };
80 
81 #endif /* __SCO_H */
82