mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-05-12 11:18:11 -07:00
fix mqtt receive on proxspace
This commit is contained in:
@@ -45,7 +45,7 @@ int open_nb_socket(const char *addr, const char *port) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// connect to server
|
||||
// connect to server
|
||||
if (connect(hSocket, p->ai_addr, (int)p->ai_addrlen) != INVALID_SOCKET) {
|
||||
break;
|
||||
}
|
||||
@@ -66,7 +66,7 @@ int open_nb_socket(const char *addr, const char *port) {
|
||||
|
||||
// make non-blocking
|
||||
if (hSocket != INVALID_SOCKET) {
|
||||
uint32_t mode; // FIONBIO returns size on 32b
|
||||
uint32_t mode = 1; // FIONBIO returns size on 32b
|
||||
ioctlsocket(hSocket, FIONBIO, (u_long *)&mode);
|
||||
}
|
||||
|
||||
@@ -76,7 +76,7 @@ int open_nb_socket(const char *addr, const char *port) {
|
||||
closesocket(hSocket);
|
||||
WSACleanup();
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
return hSocket;
|
||||
}
|
||||
@@ -88,4 +88,4 @@ void close_nb_socket(int sockfd) {
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user