| 152 | } |
| 153 | |
| 154 | uint8_t EthernetClient::status() { |
| 155 | if (_sock == MAX_SOCK_NUM) return SnSR::CLOSED; |
| 156 | return w5500.readSnSR(_sock); |
| 157 | } |
| 158 | |
| 159 | // the next function allows us to use the client returned by |
| 160 | // EthernetServer::available() as the condition in an if-statement. |
nothing calls this directly
no outgoing calls
no test coverage detected