|
New features in the IRCnet ircd 2.11
1.
PrefaceA nickname collision between two users using 2.11 ircd doesn't disconnect the two anymore (Please note that all Servers between those two Users have to be 2.11 to actually prevent Nickname Collisions). If you get KILLed[1], you can be certain that the kill originated from an IRC Operator. The nick collisions that we know from the times of 2.10 ircd are removed with the new protocol. 2. The problem Nicks on a network have to be unique. That's not a problem usually - if somebody is using a certain nick, nobody else can use it anymore. But when a split occurs and the connection between two servers is broken a problem occurs: one side is not aware of the nicks that are being used on the other. While the two parts are seperate that's not a big deal. But when the connection is established again, there are two users. It would be enough to kill just one, but because of fairness both are killed (Nick Collision). Some people abuse this to disconnect (collide) innocent users. 3. The solution UIDs (unique IDs) were introduced. That UID is -like the name suggests- unique on the whole network, because it starts with a SID (Server ID) and ends with a ID uniquely assigned by the server. Instead of disconnecting the user, just his nick is changed to the UID. It's just important for an UID to start with a digit. Normal nicks can't contain that character at the first place. The Server ID on IRCnet is 4 characters long and begins with 3 digits that are assigned based on the geographical location via <ISO3166 countrycode> and ends with an identifier of the server in the TLD. The UID doesn't depend on the nick at all. It is generated by the server. The user "mc" could have a "2768ABC78" UID. In this example 276 is the ISO3166 code for Germany, 8 the ID of the german server and "ABC78" an "serial" number, assigned by the server. You can see your UID in the 042 numeric when connecting. A user can change his nick to that UID at any time (by doing /nick UID or simply /nick 0). Also you can already connect with nick "0", which frees you of the headache of choosing a nick. (This is useful for automatons, especially.) The UID can be also used in bans, ban exceptions or invite lists. For example to ban all users on italian servers you could do: /mode !channel +b 380*!*@*). /mode !channel +b *!*@*.it would ban the users with an italian hostmask on any server. 4. Other changes in 2.11
|
1)
KILLed
KILL means that you get disconnected from the server
2)
SendQ
Send queue is a buffer internally used by the ircd. Everything is put into the
SendQ before it is sent to the client. If the client can't receive
that data fast enough the SendQ it is getting filled more and more. Hoping it's just
a temporary failure on the link and then the client will be able to receive the whole
bunch.
|