summaryrefslogtreecommitdiff
path: root/include/inspircd.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-14 10:51:18 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-14 10:51:18 +0000
commitd582107b33c3b154747a0a38f33963af7ad3c53f (patch)
tree7290c0dd5259f2416a3ccefb3dcffdb94d691029 /include/inspircd.h
parent44d3b5b82626f627069033c7bf019d4b1564b21c (diff)
Started moving of data into ServerConfig class
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2393 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/inspircd.h')
-rw-r--r--include/inspircd.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/inspircd.h b/include/inspircd.h
index 3418d6ede..dc440708e 100644
--- a/include/inspircd.h
+++ b/include/inspircd.h
@@ -14,6 +14,9 @@
* ---------------------------------------------------
*/
+#ifndef __INSPIRCD_H__
+#define __INSPIRCD_H__
+
#include "inspircd_config.h"
#include <string>
#include <stdio.h>
@@ -75,6 +78,7 @@ typedef std::deque<std::string> file_cache;
class serverstats
{
+ public:
int statsAccept;
int statsRefused;
int statsUnknown;
@@ -156,3 +160,5 @@ void* dns_task(void* arg);
void process_buffer(const char* cmdbuf,userrec *user);
void FullConnectUser(userrec* user);
chanrec* ForceChan(chanrec* Ptr,ucrec &a,userrec* user, int created);
+
+#endif