summaryrefslogtreecommitdiff
path: root/src/commands.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-23 12:23:04 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-23 12:23:04 +0000
commitd944fc0b6c14048063d6a9da08f1276a56e775d3 (patch)
tree8d65926b4ca4178fd14d3c949b3739f7e830a0d2 /src/commands.cpp
parentf9af620855b2bfe0d7d61a3f162e6790c7d1e882 (diff)
Added 'H' token
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@700 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands.cpp')
-rw-r--r--src/commands.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/commands.cpp b/src/commands.cpp
index aa23b4b95..c142e58b2 100644
--- a/src/commands.cpp
+++ b/src/commands.cpp
@@ -2122,6 +2122,11 @@ void process_restricted_commands(char token,char* params,serverrec* source,serve
case 'Q':
handle_Q(token,params,source,reply,tcp_host);
break;
+ // H <SERVER>
+ // introduce non-meshable server (such as a services server)
+ case 'H':
+ handle_H(token,params,source,reply,tcp_host);
+ break;
// K <SOURCE> <DEST> :<REASON>
// remote kill
case 'K':