summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/InspIRCd.layout18
-rw-r--r--src/connection.cpp2
2 files changed, 11 insertions, 9 deletions
diff --git a/src/InspIRCd.layout b/src/InspIRCd.layout
index 77d8b9262..ff0f11a2a 100644
--- a/src/InspIRCd.layout
+++ b/src/InspIRCd.layout
@@ -1,5 +1,5 @@
[Editors]
-Focused=1
+Focused=24
Order=1,2,4,6,3,7,25,5,24,-1
[Editor_0]
@@ -12,10 +12,10 @@ LeftChar=1
[Editor_1]
Open=1
-Top=1
-CursorCol=77
-CursorRow=5061
-TopLine=5029
+Top=0
+CursorCol=14
+CursorRow=300
+TopLine=265
LeftChar=1
[Editor_2]
@@ -196,10 +196,10 @@ LeftChar=1
[Editor_24]
Open=1
-Top=0
-CursorCol=8
-CursorRow=283
-TopLine=245
+Top=1
+CursorCol=86
+CursorRow=368
+TopLine=323
LeftChar=1
[Editor_25]
Open=1
diff --git a/src/connection.cpp b/src/connection.cpp
index 145301229..bd9595004 100644
--- a/src/connection.cpp
+++ b/src/connection.cpp
@@ -365,6 +365,8 @@ bool connection::SendPacket(char *message, const char* host)
log(DEBUG,"Disabling connector: %s",cn->GetServerName().c_str());
cn->CloseConnection();
cn->SetState(STATE_DISCONNECTED);
+ // retry the packet along a new route so either arrival OR failure are gauranteed (bugfix)
+ this->SendPacket(message,host);
return false;
}
return true;