| 310 | } |
| 311 | |
| 312 | bool NetworkInterface::started() const { |
| 313 | return (getStatusBits() & ESP_NETIF_STARTED_BIT) != 0; |
| 314 | } |
| 315 | |
| 316 | bool NetworkInterface::connected() const { |
| 317 | return (getStatusBits() & ESP_NETIF_CONNECTED_BIT) != 0; |
no outgoing calls
no test coverage detected