2009-07-22 20:27:00 +00:00
|
|
|
/*
|
|
|
|
* socket_connection.h
|
|
|
|
*
|
|
|
|
* Created by Matthias Ringwald on 6/6/09.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2009-09-28 21:19:05 +00:00
|
|
|
#include <btstack/run_loop.h>
|
2009-07-22 21:31:35 +00:00
|
|
|
|
2009-07-22 20:27:00 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2009-07-22 21:31:35 +00:00
|
|
|
/** TCP port for BTstack */
|
|
|
|
#define BTSTACK_PORT 13333
|
|
|
|
|
2009-08-19 20:09:30 +00:00
|
|
|
/** UNIX domain socket for BTstack */
|
|
|
|
#define BTSTACK_UNIX "/tmp/BTstack"
|
|
|
|
|
2009-07-22 20:27:00 +00:00
|
|
|
/** opaque connection type */
|
|
|
|
typedef struct connection connection_t;
|
|
|
|
|
|
|
|
/**
|
2009-07-22 21:31:35 +00:00
|
|
|
* create socket for incoming tcp connections
|
2009-07-22 20:27:00 +00:00
|
|
|
*/
|
|
|
|
int socket_connection_create_tcp(int port);
|
|
|
|
|
|
|
|
/**
|
2009-08-19 20:09:30 +00:00
|
|
|
* create socket for incoming unix domain connections
|
2009-07-22 20:27:00 +00:00
|
|
|
*/
|
|
|
|
int socket_connection_create_unix(char *path);
|
|
|
|
|
2009-07-22 21:31:35 +00:00
|
|
|
/**
|
2009-08-19 20:09:30 +00:00
|
|
|
* close socket connection to BTdaemon
|
|
|
|
*/
|
|
|
|
int socket_connection_close_tcp(connection_t *connection);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* create TCP socket connection to BTdaemon
|
2009-07-22 21:31:35 +00:00
|
|
|
*/
|
|
|
|
connection_t * socket_connection_open_tcp();
|
|
|
|
|
|
|
|
/**
|
2009-08-19 20:09:30 +00:00
|
|
|
* close TCP socket connection to BTdaemon
|
2009-07-22 21:31:35 +00:00
|
|
|
*/
|
|
|
|
int socket_connection_close_tcp(connection_t *connection);
|
|
|
|
|
2009-08-19 20:09:30 +00:00
|
|
|
/**
|
|
|
|
* create unix socket connection to BTdaemon
|
|
|
|
*/
|
|
|
|
connection_t * socket_connection_open_unix();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* close unix connection to BTdaemon
|
|
|
|
*/
|
|
|
|
int socket_connection_close_unix(connection_t *connection);
|
|
|
|
|
|
|
|
|
2009-07-22 20:27:00 +00:00
|
|
|
/**
|
|
|
|
* set packet handler for all auto-accepted connections
|
|
|
|
*/
|
2009-07-31 21:41:15 +00:00
|
|
|
void socket_connection_register_packet_callback( int (*packet_callback)(connection_t *connection, uint16_t packet_type, uint16_t channel, uint8_t *data, uint16_t length) );
|
2009-07-22 20:27:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* send HCI packet to single connection
|
|
|
|
*/
|
2009-07-31 21:41:15 +00:00
|
|
|
void socket_connection_send_packet(connection_t *connection, uint16_t packet_type, uint16_t channel, uint8_t *data, uint16_t size);
|
2009-07-22 20:27:00 +00:00
|
|
|
|
|
|
|
/**
|
2009-07-31 21:41:15 +00:00
|
|
|
* send event data to all clients
|
2009-07-22 20:27:00 +00:00
|
|
|
*/
|
2009-07-31 21:41:15 +00:00
|
|
|
void socket_connection_send_packet_all(uint16_t type, uint16_t channel, uint8_t *packet, uint16_t size);
|