...
How to Process Management Response
Anchor
NetDev_MgmtProcessResp()
is called when the response of the current management command is received which means that NetDev_Demux()
has signaled the device’s device’s Wireless Manager and the response must be analyzed and translated. NetDev_MgmtProcessResp()
performs the following actions:...
a) If the management command is completed, MgmtCompleted
must be set to true.
...
...
b) If the management command is not completed and more calls to NetDev_MgmtExecuteCmd()
are required before completing the current management command, MgmtCompleted
should be set to false. NetDev_MgmtExecuteCmd
will be called and the management command will not return until MgmtCompleted
comes equal to true.
...