mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-22 13:30:06 +00:00
sets a limit for sendData()
This commit is contained in:
parent
bbd6c5b532
commit
cff382a8ce
@ -73,12 +73,15 @@ CNSocket::CNSocket(SOCKET s, PacketHandler ph): sock(s), pHandler(ph) {
|
|||||||
|
|
||||||
bool CNSocket::sendData(uint8_t* data, int size) {
|
bool CNSocket::sendData(uint8_t* data, int size) {
|
||||||
int sentBytes = 0;
|
int sentBytes = 0;
|
||||||
|
int maxTries = 10;
|
||||||
|
|
||||||
while (sentBytes < size) {
|
while (sentBytes < size) {
|
||||||
int sent = send(sock, (buffer_t*)(data + sentBytes), size - sentBytes, 0); // no flags defined
|
int sent = send(sock, (buffer_t*)(data + sentBytes), size - sentBytes, 0); // no flags defined
|
||||||
if (SOCKETERROR(sent)) {
|
if (SOCKETERROR(sent)) {
|
||||||
if (errno == 11)
|
if (errno == 11 && maxTries > 0) {
|
||||||
|
maxTries--;
|
||||||
continue; // try again
|
continue; // try again
|
||||||
|
}
|
||||||
std::cout << "[FATAL] SOCKET ERROR: " << errno << std::endl;
|
std::cout << "[FATAL] SOCKET ERROR: " << errno << std::endl;
|
||||||
return false; // error occured while sending bytes
|
return false; // error occured while sending bytes
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user