Platform Software Access Point
IntroductionThis header contains function prototypes called by the WAC engine that must be implemented by the platform. These functions control the platform's software access point. Functions
PlatformSoftwareAccessPointStartThis function is called by the WAC engine when it is time to start the platform's software access point and must be implemented by the platform. This function does not have to block until the Software Access Point is fully initialized. The platform should also start the DHCP server at this time. OSStatus PlatformSoftwareAccessPointStart( const uint8_t *inIE, size_t inIELen ); ParametersReturn ValuekNoErr if successful or an error code indicating failure. PlatformSoftwareAccessPointStopThis function is called by the WAC engine when it is time to stop the platform's software access point and must be implemented by the platform. This function does not have to block until the Software Access Point is fully initialized. The platform should also stop the DHCP server at this time. OSStatus PlatformSoftwareAccessPointStop( void ); Return ValuekNoErr if successful or an error code indicating failure. |