The end function releases the instance of ESP8266WebServer/WebServer and DNSServer. It can not process them after the end function.
The end function releases the instance of ESP8266WebServer/WebServer and DNSServer. It can not process them after the end function.
### handleClient
### <iclass="fa fa-caret-right"></i>handleClient
```cpp
```cpp
void handleClient()
void handleClient()
@ -140,7 +140,7 @@ void handleClient()
Process the AutoConnect menu interface. The handleClient() function of the ESP8266WebServer/WebServer hosted by AutoConnect is also called from within AutoConnect, and the client request handlers contained in the user sketch are also handled.
Process the AutoConnect menu interface. The handleClient() function of the ESP8266WebServer/WebServer hosted by AutoConnect is also called from within AutoConnect, and the client request handlers contained in the user sketch are also handled.
### handleRequest
### <iclass="fa fa-caret-right"></i>handleRequest
```cpp
```cpp
void handleRequest()
void handleRequest()
@ -151,7 +151,7 @@ Handling for the AutoConnect menu request.
!!! warning "About used in combination with handleClient"
!!! warning "About used in combination with handleClient"
The handleRequest function is not supposed to use with AutoConnect::handleClient. It should be used with ESP8266WebServer::handleClient or WebServer::handleClient.
The handleRequest function is not supposed to use with AutoConnect::handleClient. It should be used with ESP8266WebServer::handleClient or WebServer::handleClient.
### home
### <iclass="fa fa-caret-right"></i>home
```cpp
```cpp
void home(String uri)
void home(String uri)
@ -163,7 +163,7 @@ Put a user site's home URI. The URI specified by home is linked from "HOME" in t
<dd><spanclass="apidef">uri</span> A URI string of user site's home path.</dd>
<dd><spanclass="apidef">uri</span> A URI string of user site's home path.</dd>
</dl>
</dl>
### host
### <iclass="fa fa-caret-right"></i>host
- For ESP8266
- For ESP8266
@ -194,7 +194,7 @@ Returns the reference of the ESP8266WebServer/WebServer which is allocated in Au
portal.host().handleClient();
portal.host().handleClient();
```
```
### join
### <iclass="fa fa-caret-right"></i>join
```cpp
```cpp
void join(AutoConnectAux& aux)
void join(AutoConnectAux& aux)
@ -208,7 +208,7 @@ Join the AutoConnectAux object to AutoConnect. AutoConnectAux objects can be joi
<dd><spanclass="apidef">aux</span>Reference to AutoConnectAux. It can be std::vector of std::reference_wrapper of AutoConnectAux with [list initialization](https://en.cppreference.com/w/cpp/language/list_initialization).</dd>
<dd><spanclass="apidef">aux</span>Reference to AutoConnectAux. It can be std::vector of std::reference_wrapper of AutoConnectAux with [list initialization](https://en.cppreference.com/w/cpp/language/list_initialization).</dd>