提交 f0336b38 编写于 作者: M me-no-dev

fix change in IDF causing havoc when used as component

上级 46d1b173
...@@ -49,7 +49,7 @@ WiFiClient WiFiServer::available(){ ...@@ -49,7 +49,7 @@ WiFiClient WiFiServer::available(){
else { else {
struct sockaddr_in _client; struct sockaddr_in _client;
int cs = sizeof(struct sockaddr_in); int cs = sizeof(struct sockaddr_in);
client_sock = accept(sockfd, (struct sockaddr *)&_client, (socklen_t*)&cs); client_sock = lwip_accept_r(sockfd, (struct sockaddr *)&_client, (socklen_t*)&cs);
} }
if(client_sock >= 0){ if(client_sock >= 0){
int val = 1; int val = 1;
...@@ -96,7 +96,7 @@ bool WiFiServer::hasClient() { ...@@ -96,7 +96,7 @@ bool WiFiServer::hasClient() {
} }
struct sockaddr_in _client; struct sockaddr_in _client;
int cs = sizeof(struct sockaddr_in); int cs = sizeof(struct sockaddr_in);
_accepted_sockfd = accept(sockfd, (struct sockaddr *)&_client, (socklen_t*)&cs); _accepted_sockfd = lwip_accept_r(sockfd, (struct sockaddr *)&_client, (socklen_t*)&cs);
if (_accepted_sockfd >= 0) { if (_accepted_sockfd >= 0) {
return true; return true;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册