Merge latest changes from release-1.0.1

Removing all C++11 features touches many parts of many files, so better merge the changes into develop ASAP to prevent future conflicts.
This commit is contained in:
Jason Watkins
2015-05-05 08:22:11 -07:00
12 changed files with 523 additions and 394 deletions

View File

@@ -196,7 +196,7 @@ int readUDP(XPCSocket sock, char buffer[], int len)
struct timeval tv;
tv.tv_sec = 0;
tv.tv_usec = 250;
tv.tv_usec = 100000;
// Select Command
int status = select(-1, &stReadFDS, (FD_SET*)0, &stExceptFDS, &tv);