use one receive per socket to avoid Win2000 afd.sys bugcheck 0x76
bk: 49c8f8dc9Iy3ZkOklCm7MOS4oEPZMQ
}
}
-#define WINDOWS_RECVS_PER_SOCKET 4
+ /*
+ * Windows 2000 bluescreens with bugcheck 0x76
+ * PROCESS_HAS_LOCKED_PAGES at ntpd process
+ * termination when using more than one pending
+ * receive per socket. A runtime version test
+ * would allow using more on newer versions
+ * of Windows.
+ */
+
+#define WINDOWS_RECVS_PER_SOCKET 1
for (n = 0; n < WINDOWS_RECVS_PER_SOCKET; n++) {