Loading tests/server/util.c +6 −5 Original line number Diff line number Diff line Loading @@ -55,6 +55,10 @@ #include "getpart.h" #include "util.h" #if defined(ENABLE_IPV6) && defined(__MINGW32__) const struct in6_addr in6addr_any = {{ IN6ADDR_ANY_INIT }}; #endif /* * ourerrno() returns the errno (or equivalent) on this platform to * hide platform specific for the function that calls this. Loading Loading @@ -97,7 +101,7 @@ void logmsg(const char *msg, ...) } } #if defined(WIN32) && !defined(__CYGWIN__) #if defined(REAL_WIN32) /* use instead of perror() on generic windows */ void win32_perror (const char *msg) { Loading @@ -111,9 +115,7 @@ void win32_perror (const char *msg) fprintf(stderr, "%s: ", msg); fprintf(stderr, "%s\n", buf); } #endif #if defined(WIN32) && !defined(__CYGWIN__) void win32_init(void) { WORD wVersionRequested; Loading Loading @@ -143,7 +145,7 @@ void win32_cleanup(void) { WSACleanup(); } #endif #endif /* REAL_WIN32 */ /* set by the main code to point to where the test dir is */ const char *path="."; Loading @@ -154,4 +156,3 @@ char *test2file(long testno) snprintf(filename, sizeof(filename), TEST_DATA_PATH, path, testno); return filename; } tests/server/util.h +6 −9 Original line number Diff line number Diff line Loading @@ -40,6 +40,8 @@ extern const char *path; #if defined(WIN32) && !defined(__CYGWIN__) #include <process.h> #include <fcntl.h> #define REAL_WIN32 #define sleep(sec) Sleep ((sec)*1000) Loading @@ -49,20 +51,15 @@ extern const char *path; #define ENOTSOCK WSAENOTSOCK #define ECONNREFUSED WSAECONNREFUSED #if defined(ENABLE_IPV6) && defined(__MINGW32__) const struct in6_addr in6addr_any = {{ IN6ADDR_ANY_INIT }}; #endif #endif #endif #if defined(WIN32) && !defined(__CYGWIN__) #undef perror #define perror(m) win32_perror(m) #endif void win32_perror (const char *msg); void win32_init(void); void win32_cleanup(void); #endif /* WIN32 && !__CYGWIN__ */ /* returns the path name to the test case file */ char *test2file(long testno); #endif /* __SERVER_UTIL_H */ Loading
tests/server/util.c +6 −5 Original line number Diff line number Diff line Loading @@ -55,6 +55,10 @@ #include "getpart.h" #include "util.h" #if defined(ENABLE_IPV6) && defined(__MINGW32__) const struct in6_addr in6addr_any = {{ IN6ADDR_ANY_INIT }}; #endif /* * ourerrno() returns the errno (or equivalent) on this platform to * hide platform specific for the function that calls this. Loading Loading @@ -97,7 +101,7 @@ void logmsg(const char *msg, ...) } } #if defined(WIN32) && !defined(__CYGWIN__) #if defined(REAL_WIN32) /* use instead of perror() on generic windows */ void win32_perror (const char *msg) { Loading @@ -111,9 +115,7 @@ void win32_perror (const char *msg) fprintf(stderr, "%s: ", msg); fprintf(stderr, "%s\n", buf); } #endif #if defined(WIN32) && !defined(__CYGWIN__) void win32_init(void) { WORD wVersionRequested; Loading Loading @@ -143,7 +145,7 @@ void win32_cleanup(void) { WSACleanup(); } #endif #endif /* REAL_WIN32 */ /* set by the main code to point to where the test dir is */ const char *path="."; Loading @@ -154,4 +156,3 @@ char *test2file(long testno) snprintf(filename, sizeof(filename), TEST_DATA_PATH, path, testno); return filename; }
tests/server/util.h +6 −9 Original line number Diff line number Diff line Loading @@ -40,6 +40,8 @@ extern const char *path; #if defined(WIN32) && !defined(__CYGWIN__) #include <process.h> #include <fcntl.h> #define REAL_WIN32 #define sleep(sec) Sleep ((sec)*1000) Loading @@ -49,20 +51,15 @@ extern const char *path; #define ENOTSOCK WSAENOTSOCK #define ECONNREFUSED WSAECONNREFUSED #if defined(ENABLE_IPV6) && defined(__MINGW32__) const struct in6_addr in6addr_any = {{ IN6ADDR_ANY_INIT }}; #endif #endif #endif #if defined(WIN32) && !defined(__CYGWIN__) #undef perror #define perror(m) win32_perror(m) #endif void win32_perror (const char *msg); void win32_init(void); void win32_cleanup(void); #endif /* WIN32 && !__CYGWIN__ */ /* returns the path name to the test case file */ char *test2file(long testno); #endif /* __SERVER_UTIL_H */