* @brief Called to accept an incoming connection * @param ip_address IP address of the client * @return true if the incoming connection must be accepted, false otherwise */
| 99 | * @return true if the incoming connection must be accepted, false otherwise |
| 100 | */ |
| 101 | bool acceptConnection(const char* ip_address) override |
| 102 | { |
| 103 | (void)ip_address; |
| 104 | return true; |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * @brief Called to check the charge point credentials for HTTP basic authentication |
no outgoing calls
no test coverage detected