summaryrefslogtreecommitdiffstats
path: root/include/rfcomm.h
blob: e013a046713a4d49f3a82f5319ef4126ec5fd5d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/* 
   RFCOMM implementation for Linux Bluetooth stack (BlueZ).
   Copyright (C) 2002 Maxim Krasnyansky <maxk@qualcomm.com>

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License version 2 as
   published by the Free Software Foundation;

   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
   OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
   IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
   CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES 
   WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 
   ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 
   OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

   ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, 
   COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS 
   SOFTWARE IS DISCLAIMED.
*/

/*
 *  $Id$
 */

#ifndef __RFCOMM_H
#define __RFCOMM_H

#ifdef __cplusplus
extern "C" {
#endif

/* RFCOMM defaults */
#define RFCOMM_DEFAULT_MTU  127

#define RFCOMM_PSM 3

#define RFCOMM_CONN_TIMEOUT (HZ * 30)
#define RFCOMM_DISC_TIMEOUT (HZ * 20)

/* RFCOMM socket address */
struct sockaddr_rc {
	sa_family_t rc_family;
	bdaddr_t    rc_bdaddr;
	uint8_t     rc_channel;
};

/* RFCOMM TTY support */
#define RFCOMM_MAX_DEV  256

#define RFCOMM_UNKNOWN  0
#define RFCOMM_CONNECT  1
#define RFCOMM_BIND     2

#define RFCOMMCONNECT		_IOW('R', 201, int)
#define RFCOMMDISCONNECT	_IOW('R', 202, int)
#define RFCOMMBIND		_IOW('R', 203, int)
#define RFCOMMRELEASE		_IOW('R', 204, int)

#define RFCOMMGETDEVLIST	_IOR('R', 211, int)
#define RFCOMMGETDEVINFO	_IOR('R', 212, int)

struct rfcomm_dev_conn_req {
	uint16_t dev_id;
	bdaddr_t src;
	bdaddr_t dst;
	uint8_t  chn;
};

struct rfcomm_dev_disc_req {
	uint16_t dev_id;
};

struct rfcomm_dev_data_req {
	uint16_t dev_id;
	uint32_t dev_opt;
};

struct rfcomm_dev_list_req {
	uint16_t dev_num;
	struct rfcomm_dev_data_req dev_req[0];
};

struct rfcomm_dev_info_req {
	uint16_t dev_id;
	uint8_t  type;
	uint32_t flags;
	uint16_t state;
	bdaddr_t src;
	bdaddr_t dst;
	uint8_t  chn;
};

#ifdef __cplusplus
}
#endif

#endif /* __RFCOMM_H */