We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 831917a commit a72b8d5Copy full SHA for a72b8d5
libraries/WiFi/src/WiFiClient.cpp
@@ -28,25 +28,18 @@
28
29
WiFiClient::WiFiClient():sockfd(-1),_connected(false),next(NULL)
30
{
31
- //ets_printf("WiFiClient(%d)\n", sockfd);
32
}
33
34
WiFiClient::WiFiClient(int fd):sockfd(fd),_connected(true),next(NULL)
35
36
- ets_printf("WiFiClient(%d)\n", sockfd);
37
38
39
WiFiClient::~WiFiClient()
40
41
- if(sockfd >= 0) {
42
- ets_printf("~WiFiClient(%d)\n", sockfd);
43
- }
44
- //stop();
45
46
47
WiFiClient & WiFiClient::operator=(const WiFiClient &other)
48
49
- ets_printf("WiFiClient(%d) = (%d)\n", sockfd, other.sockfd);
50
stop();
51
sockfd = other.sockfd;
52
_connected = other._connected;
0 commit comments