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
This commit is contained in:
parent
923877c716
commit
240c551b37
1 changed files with 10 additions and 0 deletions
|
@ -1620,6 +1620,15 @@ typedef struct {
|
|||
NanBeaconSdfPayloadReceive data;
|
||||
} 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. */
|
||||
|
|
Loading…
Reference in a new issue