summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-13 23:17:22 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-13 23:17:22 +0000
commitc9447a9088997d2309fd2a46fb720115337c3706 (patch)
tree9ecc7c6f22bd3095e22c433cc19a915068e06711 /include
parentdec44e09b85c9c5bd1e87b1f9607429f046a1e64 (diff)
#define IS_LOCAL(x) (x->fd > -1)
#define IS_REMOTE(x) (x->fd < 0) #define IS_MODULE_CREATED(x) (x->fd == FD_MAGIC_NUMBER) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2386 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/inspircd.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/inspircd.h b/include/inspircd.h
index 82900e441..a418cd305 100644
--- a/include/inspircd.h
+++ b/include/inspircd.h
@@ -67,6 +67,10 @@
#define TYPE_CHANNEL 2
#define TYPE_SERVER 3
+#define IS_LOCAL(x) (x->fd > -1)
+#define IS_REMOTE(x) (x->fd < 0)
+#define IS_MODULE_CREATED(x) (x->fd == FD_MAGIC_NUMBER)
+
typedef std::deque<std::string> file_cache;
typedef void (handlerfunc) (char**, int, userrec*);