diff options
| author | Garrett D'Amore <garrett@damore.org> | 2025-03-09 19:02:46 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2025-03-09 19:02:46 -0700 |
| commit | 313e37495ce6f0e84c3ef3602f92ff4e9012b42e (patch) | |
| tree | 4e695f33b9422cc5d62edb4ff48df565c15ce2de /src/platform/windows/win_io.c | |
| parent | c366471a28e06426fb7d1f6891d424432e450b67 (diff) | |
| download | nng-313e37495ce6f0e84c3ef3602f92ff4e9012b42e.tar.gz nng-313e37495ce6f0e84c3ef3602f92ff4e9012b42e.tar.bz2 nng-313e37495ce6f0e84c3ef3602f92ff4e9012b42e.zip | |
Windows: Fix regression where no connections after 5 seconds can occur
Diffstat (limited to 'src/platform/windows/win_io.c')
| -rw-r--r-- | src/platform/windows/win_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/platform/windows/win_io.c b/src/platform/windows/win_io.c index 48c08543..713f53f4 100644 --- a/src/platform/windows/win_io.c +++ b/src/platform/windows/win_io.c @@ -37,7 +37,7 @@ win_io_handler(void *arg) int rv; ok = GetQueuedCompletionStatus( - win_io_h, &cnt, &key, &olpd, 5000); + win_io_h, &cnt, &key, &olpd, INFINITE); if (olpd == NULL) { // Completion port closed... |
