Changeset cb32e392b722c3c84f6c49fccfc0ea00192ac17b
- Timestamp:
- 08/19/08 22:31:44
(3 months ago)
- Author:
- Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
- git-committer:
- Giuseppe Bilotta <giuseppe.bilotta@gmail.com> 1219170704 +0200
- git-parent:
[5aa23b55a4547257580d047118ec4019a93499f7]
- git-author:
- Giuseppe Bilotta <giuseppe.bilotta@gmail.com> 1219170704 +0200
- Message:
IRC Socket: documentation cleanup
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r5aa23b5 |
rcb32e39 |
|
| | 1 | #-- vim:sw=2:et |
|---|
| | 2 | #++ |
|---|
| | 3 | # |
|---|
| | 4 | # :title: IRC Socket |
|---|
| | 5 | # |
|---|
| | 6 | # This module implements the IRC socket interface, including IRC message |
|---|
| | 7 | # penalty computation and the message queue system |
|---|
| | 8 | |
|---|
| 1 | 9 | require 'monitor' |
|---|
| 2 | 10 | |
|---|
| … | … | |
| 5 | 13 | # by the IRCd |
|---|
| 6 | 14 | def irc_send_penalty |
|---|
| 7 | | # According to eggrdop, the initial penalty is |
|---|
| | 15 | # According to eggdrop, the initial penalty is |
|---|
| 8 | 16 | penalty = 1 + self.size/100 |
|---|
| 9 | 17 | # on everything but UnderNET where it's |
|---|