diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2004-04-15 10:48:50 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2004-04-15 10:48:50 +0000 |
commit | b6eb7e06110fb64f31fac30cfb1d8385146ace7b (patch) | |
tree | 8f894da7499c5b0405e6bf080b128e8c4d57c05c /src | |
parent | de5a4fd2ffca722c7764735d4d496213943701fc (diff) |
Mesh propogation fixes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@599 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-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 |