Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Remove enum EventType
|
|
|
|
|
|
|
|
'~' for connect classes which have disabled ident lookups through the <connect:useident> setting.
Fixes #683.
Some changes by @attilamolnar, original PR #684
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- Remove default constructor
- Replace virtual functions returning C strings with functions returning const std::string refs
|
|
|
|
|
|
and on rehash
This eliminates the need for calling OnRehash() in init()
|
|
ChangeName()
Pass the string itself to IsIdent() instead of string.c_str()
|
|
|
|
The majority of modules were logging with their module name as the
log type. There was a few places which were logging to a non-name
type but, with the exception of CONFIG, those messages are so
uncommon that it doesn't make sense to use a seperate type for
them.
|
|
|
|
|
|
|
|
|
|
- Remove virtual keyword from a ton of methods which don't need it.
- Add override keyword to a ton of methods which do need it.
|
|
This allows us to send a server notice to a user without worrying
about whether they are registered or not.
If a user receives a server notice and they are not registered
then the nickname field will contain an asterisk instead of their
nick name.
|
|
|
|
|
|
|
|
|
|
|
|
Truncate <limits:identmax>+1 long idents in User::ChangeIdent()
|
|
|
|
m_sqlauth was attached to I_OnUserDisconnect but didn't provide a handler for it, remove
|
|
|
|
|
|
hardcoded version of it
Fix long idents being accepted regardless of Limits.IdentMax
|