Explorar el Código

Fix build error on Windows

yhirose hace 1 día
padre
commit
94b5038eb3
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. 4 0
      test/test.cc

+ 4 - 0
test/test.cc

@@ -8712,7 +8712,11 @@ TEST(ClientVulnerabilityTest, PayloadMaxLengthZeroMeansNoLimit) {
         total_sent += static_cast<size_t>(sent);
       }
 
+#ifdef _WIN32
+      ::shutdown(cli, SD_SEND);
+#else
       ::shutdown(cli, SHUT_WR);
+#endif
       // Drain until the client closes its end, ensuring all data is delivered
       char drain[1024];
       while (::recv(cli, drain, sizeof(drain), 0) > 0) {}