summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2002-08-23 15:40:54 +0000
committerMarcel Holtmann <marcel@holtmann.org>2002-08-23 15:40:54 +0000
commit3c7d6997f5434c7fbb188253bb077bcc0585af3f (patch)
treef282f73d613a12f34add3e12141036c6d058d5b7
parent66d1c38bdf157527c00cf7bde69e1de7bdd3ea28 (diff)
Add TTY ioctl defines and structures
-rw-r--r--include/Makefile.am2
-rw-r--r--include/rfcomm.h54
2 files changed, 55 insertions, 1 deletions
diff --git a/include/Makefile.am b/include/Makefile.am
index 794a4c55..27a769fa 100644
--- a/include/Makefile.am
+++ b/include/Makefile.am
@@ -4,7 +4,7 @@
includedir = @includedir@/bluetooth
-include_HEADERS = bluetooth.h hci.h hci_lib.h hci_uart.h hci_vhci.h l2cap.h sco.h
+include_HEADERS = bluetooth.h hci.h hci_lib.h hci_uart.h hci_vhci.h l2cap.h sco.h rfcomm.h
bluetooth:
ln -s . bluetooth
diff --git a/include/rfcomm.h b/include/rfcomm.h
index 7da85482..b7dd179d 100644
--- a/include/rfcomm.h
+++ b/include/rfcomm.h
@@ -31,15 +31,69 @@
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 * 5)
+/* RFCOMM socket address */
struct sockaddr_rc {
sa_family_t rc_family;
bdaddr_t rc_bdaddr;
int 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 */