Overview
| Comment: | Fixed missing update |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
c19d78c4deae730c1f9eed4edaf65f28 |
| User & Date: | rkeene on 2016-09-15 03:18:13.767 |
| Other Links: | manifest | tags |
Context
|
2016-09-15
| ||
| 03:39 | Updated to use the IP address for users instead of their "hostname" as their hostname is often wrong, as well as log new connections Leaf check-in: cb291d298a user: rkeene tags: trunk | |
| 03:18 | Fixed missing update check-in: c19d78c4de user: rkeene tags: trunk | |
| 03:18 | Better implementation of NICK cleaning check-in: ea4794eca7 user: rkeene tags: trunk | |
Changes
Modified ircd.tcl
from [cc8b6d5fe5]
to [9c15122980].
| ︙ | ︙ | |||
117 118 119 120 121 122 123 |
registerClient $fd
}
} elseif {[regexp -nocase {USER +([^ ]+) +([^ ]+) +([^ ]+) +(.+)$} \
$line -> user mode virtualhost realname]} \
{
stripColon realname
clientUser $fd $user
| | | 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 |
registerClient $fd
}
} elseif {[regexp -nocase {USER +([^ ]+) +([^ ]+) +([^ ]+) +(.+)$} \
$line -> user mode virtualhost realname]} \
{
stripColon realname
clientUser $fd $user
clientVirtualHost $fd $virtualhost
clientRealName $fd $realname
if {[clientNick $fd] ne {}} {
registerClient $fd
}
}
} elseif {[clientState $fd] eq {REGISTERED}} {
# The big regexps if/else. This are the commands supported currently.
|
| ︙ | ︙ |