Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / bluetooth / cmtp / cmtp.h
blob40e3dfec0cc8677c5141ee337c8b67da9dce8d0d
1 /*
2 CMTP implementation for Linux Bluetooth stack (BlueZ).
3 Copyright (C) 2002-2003 Marcel Holtmann <marcel@holtmann.org>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License version 2 as
7 published by the Free Software Foundation;
9 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
10 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
11 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
12 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
13 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
14 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
19 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
20 SOFTWARE IS DISCLAIMED.
23 #ifndef __CMTP_H
24 #define __CMTP_H
26 #include <linux/types.h>
27 #include <net/bluetooth/bluetooth.h>
29 #define BTNAMSIZ 18
31 /* CMTP ioctl defines */
32 #define CMTPCONNADD _IOW('C', 200, int)
33 #define CMTPCONNDEL _IOW('C', 201, int)
34 #define CMTPGETCONNLIST _IOR('C', 210, int)
35 #define CMTPGETCONNINFO _IOR('C', 211, int)
37 #define CMTP_LOOPBACK 0
39 struct cmtp_connadd_req {
40 int sock; // Connected socket
41 __u32 flags;
44 struct cmtp_conndel_req {
45 bdaddr_t bdaddr;
46 __u32 flags;
49 struct cmtp_conninfo {
50 bdaddr_t bdaddr;
51 __u32 flags;
52 __u16 state;
53 int num;
56 struct cmtp_connlist_req {
57 __u32 cnum;
58 struct cmtp_conninfo __user *ci;
61 int cmtp_add_connection(struct cmtp_connadd_req *req, struct socket *sock);
62 int cmtp_del_connection(struct cmtp_conndel_req *req);
63 int cmtp_get_connlist(struct cmtp_connlist_req *req);
64 int cmtp_get_conninfo(struct cmtp_conninfo *ci);
66 /* CMTP session defines */
67 #define CMTP_INTEROP_TIMEOUT (HZ * 5)
68 #define CMTP_INITIAL_MSGNUM 0xff00
70 struct cmtp_session {
71 struct list_head list;
73 struct socket *sock;
75 bdaddr_t bdaddr;
77 unsigned long state;
78 unsigned long flags;
80 uint mtu;
82 char name[BTNAMSIZ];
84 atomic_t terminate;
86 wait_queue_head_t wait;
88 int ncontroller;
89 int num;
90 struct capi_ctr ctrl;
92 struct list_head applications;
94 unsigned long blockids;
95 int msgnum;
97 struct sk_buff_head transmit;
99 struct sk_buff *reassembly[16];
102 struct cmtp_application {
103 struct list_head list;
105 unsigned long state;
106 int err;
108 __u16 appl;
109 __u16 mapping;
111 __u16 msgnum;
114 struct cmtp_scb {
115 int id;
116 int data;
119 int cmtp_attach_device(struct cmtp_session *session);
120 void cmtp_detach_device(struct cmtp_session *session);
122 void cmtp_recv_capimsg(struct cmtp_session *session, struct sk_buff *skb);
124 static inline void cmtp_schedule(struct cmtp_session *session)
126 struct sock *sk = session->sock->sk;
128 wake_up_interruptible(sk->sk_sleep);
131 /* CMTP init defines */
132 int cmtp_init_sockets(void);
133 void cmtp_cleanup_sockets(void);
135 #endif /* __CMTP_H */