| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | | Clean up a few constructors•••Do not silently correct a zero TS in Channel::Channel(); require callers to supply a valid TS instead
| attilamolnar | 2013-08-12 | 1 | -4/+1 |
| * | | Rename <connect:nouserdns> to <connect:resolvehostnames>.•••This name is more descriptive and avoids a double negative which
could make the name of this setting unclear to non-native speakers.
| Peter Powell | 2013-08-10 | 1 | -3/+3 |
| * | | Remove virtual User::GetClass() (but keep LocalUser::GetClass()) | attilamolnar | 2013-08-09 | 1 | -15/+0 |
| * | | Accept std::string as parameter in User::ChangeHost(), ChangeIdent() and Chan...•••Pass the string itself to IsIdent() instead of string.c_str()
| attilamolnar | 2013-08-09 | 1 | -3/+3 |
| * | | Move host cycle logic into m_hostcycle | attilamolnar | 2013-08-09 | 1 | -77/+0 |
| * | | Call ModeParser::Process() directly instead of going through the CommandParser•••Simplify the way how m_conn_umodes assembles the modes it sets
| attilamolnar | 2013-08-04 | 1 | -1/+1 |
| * | | FakeUsers are only inserted into UserManager::uuidlist; don't try to erase() ... | attilamolnar | 2013-08-04 | 1 | -1/+1 |
| * | | Change the syntax of FOREACH macros to be less dumb. | Adam | 2013-08-04 | 1 | -12/+12 |
| * | | Get rid of enum UserModes and mark User::modes as private | attilamolnar | 2013-07-19 | 1 | -3/+5 |
| * | | Replace hardcoded mode letters, part 3•••This changes most remaining User::IsModeSet() calls to use ModeReferences for modes that were created by other modules or the core
| attilamolnar | 2013-07-19 | 1 | -7/+0 |
| * | | Move SetNoticeMask(), FormatNoticeMasks() and ProcessNoticeMasks() from the U... | attilamolnar | 2013-07-19 | 1 | -97/+0 |
| * | | Allow for skipping clone checking before DNS is complete. | Daniel Vassdal | 2013-07-02 | 1 | -13/+16 |
| * | | Convert User::SendText to use std::string. | Peter Powell | 2013-06-06 | 1 | -17/+10 |
| * | | Convert User::FormatNoticeMasks() to use std::string. | Peter Powell | 2013-06-06 | 1 | -6/+4 |
| * | | Replace some C string operations with the + operator. | Peter Powell | 2013-06-06 | 1 | -64/+8 |
| * | | Use InspIRCd::Format instead of snprintf(). | Peter Powell | 2013-06-06 | 1 | -4/+4 |
| * | | Compare to ServerLimits::MaxLine instead of MAXBUF. | Peter Powell | 2013-06-06 | 1 | -3/+3 |
| * | | Reserve ServerLimits::MaxLine instead of MAXBUF. | Peter Powell | 2013-06-06 | 1 | -1/+1 |
| * | | Merge insp20 | attilamolnar | 2013-06-06 | 1 | -0/+3 |
| |\| |
|
| | * | Workaround for std::list::size() having linear complexity on some implementat... | attilamolnar | 2013-05-16 | 1 | -0/+3 |
| * | | Cache mode list that is sent in the 004 numeric•••Deduplicate UserModeList(), ChannelModeList() and ParaModeList() code
| attilamolnar | 2013-05-24 | 1 | -4/+2 |
| * | | Replaced vsnprintf with VAFORMAT pretty much everywhere. | Daniel Vassdal | 2013-05-18 | 1 | -75/+28 |
| * | | Get rid of the NICKForced extension•••Don't run OnUserPreNick when the nick change is forced
| attilamolnar | 2013-05-18 | 1 | -10/+9 |
| * | | Get rid of strlcpy(), strlcat(), charlcat() and charremove() | attilamolnar | 2013-05-16 | 1 | -6/+5 |
| * | | Allow spaces (and more) in oper types•••The spaces are converted to '_' characters in OPERTYPE for 2.0 servers
Issue #533 suggested by @ankitkv
| attilamolnar | 2013-05-16 | 1 | -4/+4 |
| * | | Replace some C-isms with C++-isms.•••* 'const char*' to 'const std::string&'.
* snprintf to std::string concatenation.
* Replace duplicated OneOfMatches with InspIRCd::MatchMask.
| Peter Powell | 2013-05-15 | 1 | -30/+17 |
| * | | Add method for writing server notices.•••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.
| Peter Powell | 2013-05-14 | 1 | -2/+7 |
| * | | Merge insp20 | attilamolnar | 2013-04-28 | 1 | -0/+9 |
| |\| |
|
| | * | Log some internal errors on DEFAULT loglevel instead of DEBUG, log detected e... | attilamolnar | 2013-04-21 | 1 | -0/+8 |
| | * | Immediately stop processing whenever we detect and handle a RecvQ overrun•••Thanks to @SimosNap for the report and cooperation
| attilamolnar | 2013-04-19 | 1 | -0/+1 |
| * | | Move <performance:nouserdns> to <connect:nouserdns>. | Peter Powell | 2013-04-27 | 1 | -2/+4 |
| * | | Modularize DNS•••The DNS modules are temporarily in commands/ so they're loaded automatically
Thanks to Attila for helping with much of this.
| Adam | 2013-04-26 | 1 | -21/+1 |
| * | | Extract UID/SID generation logic into a new class: UIDGenerator | attilamolnar | 2013-04-14 | 1 | -1/+1 |
| * | | Remove the deprecated invite API | attilamolnar | 2013-04-13 | 1 | -25/+7 |
| * | | Add LOG_ prefix to the log level enum values. | Peter Powell | 2013-04-12 | 1 | -14/+14 |
| * | | Convert ISUPPORT to use a map instead of a string. | Peter Powell | 2013-04-11 | 1 | -1/+1 |
| * | | Replace IS_AWAY() and IS_OPER() macros with User::IsAway() and User::IsOper() | attilamolnar | 2013-04-10 | 1 | -6/+6 |
| * | | Move most whois related code from the core into cmd_whois | attilamolnar | 2013-04-09 | 1 | -55/+0 |
| * | | Make cmd_whowas act like a module, remove special handling | attilamolnar | 2013-04-04 | 1 | -13/+0 |
| * | | Move member variables from User to LocalUser•••- idle_lastmsg
- dns_done
- quitting_sendq
- exempt
- lastping
| attilamolnar | 2013-04-01 | 1 | -4/+5 |
| * | | Change User::GetIPString() to return const std::string& | attilamolnar | 2013-04-01 | 1 | -10/+9 |
| * | | Send LUSERS before MOTD•••Issue #399
| attilamolnar | 2013-04-01 | 1 | -2/+2 |
| * | | Remove legacy code, mostly related to 1.2 compatibility | attilamolnar | 2013-04-01 | 1 | -2/+0 |
| |/ |
|
| * | Fix m_dnsbl not checking cgiirc users when the cgiirc address is elined | attilamolnar | 2013-03-11 | 1 | -5/+8 |
| * | Remove ServerLimits::Finalise(), it's completely wrong•••Truncate <limits:identmax>+1 long idents in User::ChangeIdent()
| attilamolnar | 2012-12-09 | 1 | -1/+1 |
| * | Make LocalUserList an std::list | attilamolnar | 2012-11-29 | 1 | -5/+6 |
| * | Add a typedef for LocalUserList | attilamolnar | 2012-11-29 | 1 | -2/+2 |
| * | Reorder local user initialization steps•••OnSetUserIP hook now runs after the user has a connect class and the g/k/z lines were checked (ip only, no host at that point)
Fixes #360 reported by @JDowny
Allows #336
| attilamolnar | 2012-11-29 | 1 | -18/+4 |
| * | Remove usage of deprecated CallCommandHandler() and IsValidModuleCommand() | attilamolnar | 2012-11-19 | 1 | -2/+2 |
| * | Make better use of User::GetFullRealHost() | attilamolnar | 2012-10-21 | 1 | -6/+6 |