]> rtime.felk.cvut.cz Git - tiny-bt.git/blobdiff - src/hil2cap.h
Removed files not present and bachelor thesis CD
[tiny-bt.git] / src / hil2cap.h
diff --git a/src/hil2cap.h b/src/hil2cap.h
deleted file mode 100644 (file)
index 62871d4..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-//
-// C++ Interface: hil2cap
-//
-// Description: 
-//
-//
-// Author: root <root@ubuntu>, (C) 2008
-//
-// Copyright: See COPYING file that comes with this distribution
-//
-//
-#ifndef __HIL2CAP
-#define __HIL2CAP
-
-#include"hcidriver.h"
-#include<asm/types.h>
-#include<sys/socket.h>
-#include<errno.h>
-
-/* Connection states */
-#define DISCONNECTED 0
-#define CONNECTED 1
-#define PENDING 2
-
-
-#define MAX_CMD_STATE_REQUEST 0x0F
-typedef struct{
-       __u8 actual_status;
-       __u8 id;
-       __u16 request_opcode;
-       __u16 answer_opcode;
-
-} __attribute__((packed)) cmd_state_request;
-
-typedef struct{
-       __u16 con_id;
-       __u8 con_state;
-       int socket_fd;
-}connection_hci;
-
-
-
-
-//extern void show_all_local_dev(connection_hci *connection, bt_device *p_device);
-//extern void call_hci_inquiry_cmd(dev_lap lap,__u8 inq_length,__u8 resp_count);
-//extern void call_hci_create_connection(bt_address *dev_adress,unsigned short pkt_type,__u8 sc_mod);
-//extern void call_hci_read_bd_addr_cmd(bt_device *p_device);
-//extern void call_hci_read_local_name_cmd(bt_device *p_device);
-//extern void create_BTsocket_connection(connection_hci *connection, bt_device *p_device);
-
-
-
-#endif