]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - win/inspircd_win32wrapper.h
Apply brain's patch for binary safety of hash providers, and remove rehash from windo...
[user/henk/code/inspircd.git] / win / inspircd_win32wrapper.h
index 5673dfbfae6dd61bea9010a9871d2e9801a0939c..7de1fb44cfa30944d6b5efd2fc444397bb5ce46e 100644 (file)
@@ -23,6 +23,9 @@
 #define WINDOWS 1
 #define ENABLE_CRASHDUMPS 0
 
+/* This defaults to 64, way too small for an ircd! */
+#define FD_SETSIZE 12000
+
 /* Make builds smaller, leaner and faster */
 #define VC_EXTRALEAN
 #define WIN32_LEAN_AND_MEAN
 /* strcasecmp is not defined on windows by default */
 #define strcasecmp _stricmp
 
+/* this standard function is nonstarard. go figure. */
+#define popen _popen
+#define pclose _pclose
+
 /* Error macros need to be redirected to winsock error codes */
 #define ETIMEDOUT WSAETIMEDOUT
 #define ECONNREFUSED WSAECONNREFUSED
@@ -134,6 +141,7 @@ const char * dlerror();
 
 /* Unix-style directory searching functions */
 #define chmod(filename, mode)  
+
 struct dirent
 {
        char d_name[MAX_PATH];