HTTPs_InstanceStop
Stop a specific HTTP server instance:
- Validate return error pointer.
- Signal instance to stop the task.
- Wait for stop to complete.
- Delete instance task.
Files
http-s.h
/ http-s.c
Prototype
void HTTPs_InstanceStop (HTTPs_INSTANCE *p_instance, HTTPs_ERR *p_err);
Arguments
p_instance
Pointer to HTTP server instance structure.
p_err
Pointer to variable that will receive the return error code.
Returned values
None.
p_err
arguments should be inspected to determine whether or not HTTPs instance successfully stopped. If HTTPs instance did not successfully stop, refer to function definition header in http-s.c
for possible return error codes to locate where the HTTPs instance stop failed.
Required Configuration
None.
Notes / Warnings
None.