summaryrefslogtreecommitdiff
path: root/src/message.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-09 10:12:34 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-09 10:12:34 +0000
commit0f61489ddb2f54d62c6a59e169901e4a17098230 (patch)
tree03be491da323f94e174ad29f25149fcfce426981 /src/message.cpp
parente964e2286d78ab691078db40e402f685561ef0ca (diff)
Move Blocking/NonBlocking to socket.cpp and make inline
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4806 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/message.cpp')
-rw-r--r--src/message.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/message.cpp b/src/message.cpp
index 9b56cc8ca..e69ce94ab 100644
--- a/src/message.cpp
+++ b/src/message.cpp
@@ -48,18 +48,6 @@ extern std::vector<ircd_module*> factory;
extern time_t TIME;
extern ServerConfig* Config;
-void Blocking(int s)
-{
- int flags = fcntl(s, F_GETFL, 0);
- fcntl(s, F_SETFL, flags ^ O_NONBLOCK);
-}
-
-void NonBlocking(int s)
-{
- int flags = fcntl(s, F_GETFL, 0);
- fcntl(s, F_SETFL, flags | O_NONBLOCK);
-}
-
int c_count(userrec* u)
{
int z = 0;