| 28 | #define IS_CONNECTED (_flag & SOCKET_BUFFER_FLAG_CONNECTED) |
| 29 | |
| 30 | WiFiClient::WiFiClient() |
| 31 | { |
| 32 | _socket = -1; |
| 33 | _flag = 0; |
| 34 | _head = 0; |
| 35 | _tail = 0; |
| 36 | } |
| 37 | |
| 38 | WiFiClient::WiFiClient(uint8_t sock, uint8_t parentsock) |
| 39 | { |
nothing calls this directly
no test coverage detected