summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-11-25 10:38:55 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-11-25 10:38:55 +0000
commit63787a65810fe717853702c90bd8644548615ce1 (patch)
tree3510fb9377a67edd523d49261a607b9733b4f194 /include
parente4381d273adcf98b3bfab6827617c46d962c3b3a (diff)
Added ifndef stuff
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1936 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/socket.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/socket.h b/include/socket.h
index 9982ee7ba..051d9a453 100644
--- a/include/socket.h
+++ b/include/socket.h
@@ -14,6 +14,9 @@
* ---------------------------------------------------
*/
+#ifndef __INSP_SOCKET_H__
+#define __INSP_SOCKET_H__
+
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
@@ -54,3 +57,5 @@ public:
virtual void Close();
virtual ~InspSocket();
};
+
+#endif