diff options
author | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-04-09 11:51:24 +0000 |
---|---|---|
committer | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-04-09 11:51:24 +0000 |
commit | aa21503f06e3a32945c003ce4193a766ea58642b (patch) | |
tree | d851081105140a045ca223e36797e8d6341a1303 /include | |
parent | 77123f4dec9f29105f6c0ceea0262cfe8e9eaa1a (diff) |
Shuffle some more includes around, const reference a few functions in inspircd.*
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3854 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/inspircd.h | 49 | ||||
-rw-r--r-- | include/socket.h | 4 |
2 files changed, 19 insertions, 34 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index bd180328d..c13c4dd7f 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -17,28 +17,9 @@ #ifndef __INSPIRCD_H__ #define __INSPIRCD_H__ -#include "inspircd_config.h" #include <string> -#include <stdio.h> -#include <unistd.h> -#include <signal.h> -#include <time.h> -#include <netdb.h> -#include <string.h> -#include <errno.h> -#include <sys/types.h> - -#ifndef _LINUX_C_LIB_VERSION -#include <sys/socket.h> -#include <sys/stat.h> -#include <netinet/in.h> -#endif - -#include <arpa/inet.h> -#include <string> -#include <deque> #include <sstream> - +#include "inspircd_config.h" #include "users.h" #include "channels.h" #include "socket.h" @@ -46,17 +27,18 @@ #include "socketengine.h" #include "command_parse.h" -// some misc defines +/* Some misc defines */ #define ERROR -1 #define MAXCOMMAND 32 -// crucial defines +/* Crucial defines */ #define ETIREDGERBILS EAGAIN -// This define is used in place of strcmp when we -// want to check if a char* string contains only one -// letter. Pretty fast, its just two compares and an -// addition. +/* This define is used in place of strcmp when we + * want to check if a char* string contains only one + * letter. Pretty fast, its just two compares and an + * addition. + */ #define IS_SINGLE(x,y) ( (*x == y) && (*(x+1) == 0) ) template<typename T> inline std::string ConvToStr(const T &in) @@ -66,7 +48,6 @@ template<typename T> inline std::string ConvToStr(const T &in) return tmp.str(); } - class serverstats { public: @@ -94,14 +75,14 @@ class serverstats class InspIRCd { - private: char MODERR[MAXBUF]; - void erase_factory(int j); - void erase_module(int j); + bool expire_run; + + void erase_factory(int j); + void erase_module(int j); void BuildISupport(); void MoveTo(std::string modulename,int slot); - bool expire_run; public: time_t startup_time; @@ -134,8 +115,8 @@ bool DaemonSeed(); void WritePID(const std::string &filename); /* userrec optimization stuff */ -void AddServerName(std::string servername); -const char* FindServerNamePtr(std::string servername); -bool FindServerName(std::string servername); +void AddServerName(const std::string &servername); +const char* FindServerNamePtr(const std::string &servername); +bool FindServerName(const std::string &servername); #endif diff --git a/include/socket.h b/include/socket.h index e62a2dc41..60347506d 100644 --- a/include/socket.h +++ b/include/socket.h @@ -19,14 +19,18 @@ /* This is where we'll define wrappers for socket IO stuff, for neat winsock compatability */ +#include <arpa/inet.h> #include <sys/time.h> #include <sys/resource.h> #include <sys/types.h> #include <sys/socket.h> +#include <sys/stat.h> #include <netinet/in.h> #include <unistd.h> #include <fcntl.h> #include <poll.h> +#include <errno.h> +#include <netdb.h> #include "inspircd_config.h" /* macros to the relevant system address description structs */ |