unrealircd- supernets unrealircd source & configuration |
git clone git://git.acid.vegas/unrealircd.git |
Log | Files | Refs | Archive | README | LICENSE |
unrealircd.h (747B)
1 /** Standard include for all UnrealIRCd modules. 2 * This should normally provide all of UnrealIRCd's functionality 3 * (that is publicly exposed anyway). 4 */ 5 #include "config.h" 6 #include <assert.h> 7 #include "struct.h" 8 #include "common.h" 9 #include "sys.h" 10 #include "numeric.h" 11 #include "msg.h" 12 #include "mempool.h" 13 #include "channel.h" 14 #include <time.h> 15 #include <sys/stat.h> 16 #include <stdio.h> 17 #include <string.h> 18 #ifdef GLOBH 19 #include <glob.h> 20 #endif 21 #ifdef _WIN32 22 #include <io.h> 23 #include <sys/timeb.h> 24 #undef GLOBH 25 #else 26 #include <sys/resource.h> 27 #include <utime.h> 28 #include <dirent.h> 29 #endif 30 #include <fcntl.h> 31 #include <signal.h> 32 #include "h.h" 33 #include "version.h" 34 #ifdef USE_LIBCURL 35 #include <curl/curl.h> 36 #endif 37 #include <argon2.h>