From 8fb123e8d90117b845f944fb202b32a1b5a740da Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Thu, 24 Apr 2014 16:15:02 +0300 Subject: android/avctp: Add avctp_send_browsing function This function can be used to send responses over browsing channel. --- android/avctp.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'android/avctp.c') diff --git a/android/avctp.c b/android/avctp.c index 94f84ad4d..7098fc25e 100644 --- a/android/avctp.c +++ b/android/avctp.c @@ -1208,6 +1208,18 @@ int avctp_send_browsing_req(struct avctp *session, return 0; } +int avctp_send_browsing(struct avctp *session, uint8_t transaction, + const struct iovec *iov, int iov_cnt) +{ + struct avctp_channel *browsing = session->browsing; + + if (browsing == NULL) + return -ENOTCONN; + + return avctp_browsing_send(browsing, transaction, AVCTP_RESPONSE, + iov, iov_cnt); +} + static const char *op2str(uint8_t op) { int i; -- cgit v1.2.1