summaryrefslogtreecommitdiff
path: root/src
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
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')
-rw-r--r--src/InspIRCd.layout24
-rw-r--r--src/commands.cpp5
2 files changed, 17 insertions, 12 deletions
diff --git a/src/InspIRCd.layout b/src/InspIRCd.layout
index e8d520a97..f7d226043 100644
--- a/src/InspIRCd.layout
+++ b/src/InspIRCd.layout
@@ -1,5 +1,5 @@
[Editors]
-Focused=1
+Focused=43
Order=2,4,6,3,7,25,5,24,39,42,43,-1,1
[Editor_0]
@@ -12,10 +12,10 @@ LeftChar=1
[Editor_1]
Open=1
-Top=1
-CursorCol=15
-CursorRow=199
-TopLine=169
+Top=0
+CursorCol=44
+CursorRow=830
+TopLine=790
LeftChar=1
[Editor_2]
@@ -197,9 +197,9 @@ LeftChar=1
[Editor_24]
Open=1
Top=0
-CursorCol=2
-CursorRow=365
-TopLine=341
+CursorCol=1
+CursorRow=193
+TopLine=162
LeftChar=1
[Editor_25]
Open=1
@@ -329,10 +329,10 @@ TopLine=1685
LeftChar=1
[Editor_43]
Open=1
-Top=0
-CursorCol=9
-CursorRow=1996
-TopLine=1979
+Top=1
+CursorCol=12
+CursorRow=2128
+TopLine=2096
LeftChar=1
[Editor_44]
Open=1
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':