diff options
-rw-r--r-- | src/InspIRCd.layout | 6 | ||||
-rw-r--r-- | src/inspircd.cpp | 8 |
2 files changed, 8 insertions, 6 deletions
diff --git a/src/InspIRCd.layout b/src/InspIRCd.layout index 00a44d727..b69122178 100644 --- a/src/InspIRCd.layout +++ b/src/InspIRCd.layout @@ -13,9 +13,9 @@ LeftChar=1 [Editor_1] Open=1 Top=1 -CursorCol=48 -CursorRow=895 -TopLine=875 +CursorCol=78 +CursorRow=6457 +TopLine=6424 LeftChar=1 [Editor_2] diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 508d1ac4c..0d97b8c43 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -6451,10 +6451,12 @@ void process_restricted_commands(char token,char* params,serverrec* source,serve // now broadcast this new servers address out to all servers that are linked to us, // except the newcomer. They'll all attempt to connect back to it. char buffer[MAXBUF]; - snprintf(buffer,MAXBUF,"+ %s %s %d %d",udp_host,ipaddr,port,authcookie); - NetSendToAllExcept(buffer,udp_host); + // give the server its authcookie. snprintf(buffer,MAXBUF,"~ %d",authcookie); - NetSendToAllExcept(buffer,udp_host); + NetSendToOne(udp_host,buffer); + // tell all the other servers to use this authcookie to connect back again + snprintf(buffer,MAXBUF,"+ %s %s %d %d",udp_host,ipaddr,port,authcookie); + NetSendToAllExcept(udp_host,buffer); break; // ~ // Store authcookie |