Remove leftover debug
This commit is contained in:
parent
831917a47e
commit
a72b8d5635
@ -28,25 +28,18 @@
|
|||||||
|
|
||||||
WiFiClient::WiFiClient():sockfd(-1),_connected(false),next(NULL)
|
WiFiClient::WiFiClient():sockfd(-1),_connected(false),next(NULL)
|
||||||
{
|
{
|
||||||
//ets_printf("WiFiClient(%d)\n", sockfd);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
WiFiClient::WiFiClient(int fd):sockfd(fd),_connected(true),next(NULL)
|
WiFiClient::WiFiClient(int fd):sockfd(fd),_connected(true),next(NULL)
|
||||||
{
|
{
|
||||||
ets_printf("WiFiClient(%d)\n", sockfd);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
WiFiClient::~WiFiClient()
|
WiFiClient::~WiFiClient()
|
||||||
{
|
{
|
||||||
if(sockfd >= 0) {
|
|
||||||
ets_printf("~WiFiClient(%d)\n", sockfd);
|
|
||||||
}
|
|
||||||
//stop();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
WiFiClient & WiFiClient::operator=(const WiFiClient &other)
|
WiFiClient & WiFiClient::operator=(const WiFiClient &other)
|
||||||
{
|
{
|
||||||
ets_printf("WiFiClient(%d) = (%d)\n", sockfd, other.sockfd);
|
|
||||||
stop();
|
stop();
|
||||||
sockfd = other.sockfd;
|
sockfd = other.sockfd;
|
||||||
_connected = other._connected;
|
_connected = other._connected;
|
||||||
|
Loading…
Reference in New Issue
Block a user