summaryrefslogtreecommitdiff
path: root/android/ipc.h
diff options
context:
space:
mode:
authorSzymon Janc <szymon.janc@tieto.com>2014-02-18 16:18:33 +0100
committerSzymon Janc <szymon.janc@tieto.com>2014-02-28 15:22:45 +0100
commitd61f3fc72e6d3961bd82cfdd094b586d65ede4bc (patch)
tree6791f58c73adcc8588481a82eaadb077f656eb57 /android/ipc.h
parent3f7daeb0e8ef5301d2c33d10e8036bb5db337d27 (diff)
downloadbluez-d61f3fc72e6d3961bd82cfdd094b586d65ede4bc.tar.gz
android/a2dp: Use common IPC for audio socket
This makes audio HAL to use same code for IPC as BT HAL.
Diffstat (limited to 'android/ipc.h')
-rw-r--r--android/ipc.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/android/ipc.h b/android/ipc.h
index d46dbbf74..cc4e92d1c 100644
--- a/android/ipc.h
+++ b/android/ipc.h
@@ -41,19 +41,12 @@ struct ipc *ipc_init(const char *path, size_t size, int max_service_id,
ipc_disconnect_cb cb, void *cb_data);
void ipc_cleanup(struct ipc *ipc);
-GIOChannel *ipc_connect(const char *path, size_t size, GIOFunc connect_cb,
- void *user_data);
-int ipc_handle_msg(struct service_handler *handlers, size_t max_index,
- const void *buf, ssize_t len);
-
void ipc_send_rsp(struct ipc *ipc, uint8_t service_id, uint8_t opcode,
uint8_t status);
void ipc_send_rsp_full(struct ipc *ipc, uint8_t service_id, uint8_t opcode,
uint16_t len, void *param, int fd);
void ipc_send_notif(struct ipc *ipc, uint8_t service_id, uint8_t opcode,
uint16_t len, void *param);
-void ipc_send(int sk, uint8_t service_id, uint8_t opcode, uint16_t len,
- void *param, int fd);
void ipc_register(struct ipc *ipc, uint8_t service,
const struct ipc_handler *handlers, uint8_t size);
void ipc_unregister(struct ipc *ipc, uint8_t service);