Merge pull request #26 from jason-watkins/master

CTest Fixes
This commit is contained in:
Christopher Teubert
2015-03-24 16:49:44 -07:00
17 changed files with 33 additions and 75 deletions

View File

@@ -457,9 +457,10 @@ int handleCONN(char buf[])
updateLog(logmsg,strlen(logmsg));
// SEND CONFIRMATION
memcpy(sendSocket.xpIP,connectionList[current_connection].IP, sizeof(connectionList[current_connection].IP));
sendSocket.xpPort = connectionList[current_connection].recPort;
sendUDP(sendSocket, the_message, 5);
// TODO: Ivestigate why sending confirmation causes crashes on Windows 8
//memcpy(sendSocket.xpIP,connectionList[current_connection].IP, sizeof(connectionList[current_connection].IP));
//sendSocket.xpPort = connectionList[current_connection].recPort;
//sendUDP(sendSocket, the_message, 5);
return 0;
}