From 240c551b37e9908ccd7407a9a6345ab500ce0976 Mon Sep 17 00:00:00 2001 From: Subhani Shaik Date: Tue, 3 May 2016 07:11:06 -0700 Subject: [PATCH] Add indication for transmit followup The status of the transmit follow up is not notified, enabling an indication to notify the status of transmit in progress. Change-Id: I91fab766d7265ef6538c003ac454291efd0ec462 --- include/hardware_legacy/wifi_nan.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/hardware_legacy/wifi_nan.h b/include/hardware_legacy/wifi_nan.h index a361b60..7f7b878 100644 --- a/include/hardware_legacy/wifi_nan.h +++ b/include/hardware_legacy/wifi_nan.h @@ -1621,6 +1621,15 @@ typedef struct { } NanBeaconSdfPayloadInd; /* + Event Indication notifying the + transmit followup in progress +*/ +typedef struct { + transaction_id id; + NanStatusType reason; +} NanTransmitFollowupInd; + +/* Data request Initiator/Responder app/service related info */ @@ -1784,6 +1793,7 @@ typedef struct { void (*EventDataRequest)(NanDataPathRequestInd* event); void (*EventDataConfirm)(NanDataPathConfirmInd* event); void (*EventDataEnd)(NanDataPathEndInd* event); + void (*EventTransmitFollowup) (NanTransmitFollowupInd* event); } NanCallbackHandler; /* Enable NAN functionality. */ -- 2.11.0