Skip to content

Commit

Permalink
Disable non-blocking sockets on Windows.
Browse files Browse the repository at this point in the history
Will later be added to the library.
  • Loading branch information
FlorianFrank committed Jun 3, 2022
1 parent 9d34575 commit 1e83f50
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/CommandLineInterfaceDefines.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@
/** Defines the indentation for the help message */
#define HELP_MESSAGE_INDENTATION 10

#ifdef __WIN32__
#define TIMEOUT_IN_MS 0 // TODO timeout not supported yet on windows
#else
#define TIMEOUT_IN_MS 2000
#endif

enum CLI_Commands
{
Expand Down

0 comments on commit 1e83f50

Please sign in to comment.