Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-05-24 | Cache mode list that is sent in the 004 numeric | attilamolnar | |
Deduplicate UserModeList(), ChannelModeList() and ParaModeList() code | |||
2013-05-18 | Replaced vsnprintf with VAFORMAT pretty much everywhere. | Daniel Vassdal | |
2013-05-18 | Get rid of the NICKForced extension | attilamolnar | |
Don't run OnUserPreNick when the nick change is forced | |||
2013-05-16 | Get rid of strlcpy(), strlcat(), charlcat() and charremove() | attilamolnar | |
2013-05-16 | Allow spaces (and more) in oper types | attilamolnar | |
The spaces are converted to '_' characters in OPERTYPE for 2.0 servers Issue #533 suggested by @ankitkv | |||
2013-05-15 | Replace some C-isms with C++-isms. | Peter Powell | |
* 'const char*' to 'const std::string&'. * snprintf to std::string concatenation. * Replace duplicated OneOfMatches with InspIRCd::MatchMask. | |||
2013-05-14 | Add method for writing server notices. | Peter Powell | |
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. | |||
2013-04-28 | Merge insp20 | attilamolnar | |
2013-04-27 | Move <performance:nouserdns> to <connect:nouserdns>. | Peter Powell | |
2013-04-26 | Modularize DNS | Adam | |
The DNS modules are temporarily in commands/ so they're loaded automatically Thanks to Attila for helping with much of this. | |||
2013-04-21 | Log some internal errors on DEFAULT loglevel instead of DEBUG, log detected ↵ | attilamolnar | |
errors in m_callerid | |||
2013-04-19 | Immediately stop processing whenever we detect and handle a RecvQ overrun | attilamolnar | |
Thanks to @SimosNap for the report and cooperation | |||
2013-04-14 | Extract UID/SID generation logic into a new class: UIDGenerator | attilamolnar | |
2013-04-13 | Remove the deprecated invite API | attilamolnar | |
2013-04-12 | Add LOG_ prefix to the log level enum values. | Peter Powell | |
2013-04-11 | Convert ISUPPORT to use a map instead of a string. | Peter Powell | |
2013-04-10 | Replace IS_AWAY() and IS_OPER() macros with User::IsAway() and User::IsOper() | attilamolnar | |
2013-04-09 | Move most whois related code from the core into cmd_whois | attilamolnar | |
2013-04-04 | Make cmd_whowas act like a module, remove special handling | attilamolnar | |
2013-04-01 | Move member variables from User to LocalUser | attilamolnar | |
- idle_lastmsg - dns_done - quitting_sendq - exempt - lastping | |||
2013-04-01 | Change User::GetIPString() to return const std::string& | attilamolnar | |
2013-04-01 | Send LUSERS before MOTD | attilamolnar | |
Issue #399 | |||
2013-04-01 | Remove legacy code, mostly related to 1.2 compatibility | attilamolnar | |
2013-03-11 | Fix m_dnsbl not checking cgiirc users when the cgiirc address is elined | attilamolnar | |
2012-12-09 | Remove ServerLimits::Finalise(), it's completely wrong | attilamolnar | |
Truncate <limits:identmax>+1 long idents in User::ChangeIdent() | |||
2012-11-29 | Make LocalUserList an std::list | attilamolnar | |
2012-11-29 | Add a typedef for LocalUserList | attilamolnar | |
2012-11-29 | Reorder local user initialization steps | attilamolnar | |
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 | |||
2012-11-19 | Remove usage of deprecated CallCommandHandler() and IsValidModuleCommand() | attilamolnar | |
2012-10-21 | Make better use of User::GetFullRealHost() | attilamolnar | |
2012-10-12 | Fix unregistered users getting global notices, also fix certain commands ↵ | attilamolnar | |
working on unregistered users, spotted by @Adam- | |||
2012-10-03 | Fix (d)host starting with ':' for some IPv6 clients | attilamolnar | |
2012-09-30 | Fix more undefined behavior caused by referencing the returned buffer by ↵ | attilamolnar | |
std::string::c_str() when the object is temporary See 83c7cc45daf6fb1f8c36f15297a4657e45a34e88 | |||
2012-09-23 | Fix undefined behavior caused by referencing the returned buffer by ↵ | attilamolnar | |
std::string::c_str() when the object is temporary Thanks to @ChrisTX for pointing this out Fixes #257 reported by @helloall | |||
2012-09-13 | Call OnUserSetIP() whenever the IP of a local user changes, set ↵ | attilamolnar | |
ident,host,dhost in LocalUser constructor | |||
2012-08-25 | Add a config option to enable/disable the welcome notice sent to clients ↵ | attilamolnar | |
after successful registration Fixes #284 reported by @hoggeh | |||
2012-07-27 | Don't hard code the branch version. | Peter Powell | |
2012-07-01 | Revert "users: add SetClientIP function for irc::sockets::sockaddrs type." | Robin Burchell | |
This reverts commit f0474272303ac9297f637ce956315518138bafff. | |||
2012-07-01 | Revert "users: LocalUser constructor should call SetClientIP() on itself" | Robin Burchell | |
This reverts commit dca6a7821efbfd1e6c2987dfa1d2b9f72d1db1be. | |||
2012-07-01 | Revert "users: introduce OnSetClientIP hook." | Robin Burchell | |
This reverts commit 5fd31ec5a6ba6021763b36d8d17d4665900623ab. | |||
2012-06-17 | Fix pending invites not being removed when a channel was deleted or had its ↵ | attilamolnar | |
TS lowered | |||
2012-06-12 | Be consistent with Robby's qQ snomask changes | Sir Poggles | |
2012-06-12 | users: introduce OnSetClientIP hook. | William Pitcock | |
This hook is called whenever a client's IP is modified. | |||
2012-06-12 | users: LocalUser constructor should call SetClientIP() on itself | William Pitcock | |
This way we fire a future hook based on local IP information changing. | |||
2012-06-12 | users: add SetClientIP function for irc::sockets::sockaddrs type. | William Pitcock | |
Code which touches client_sa should instead use this SetClientIP function so that hooks may be called in the future. | |||
2012-04-19 | Replace copyright headers with headers granting specific authors copyright | Robby- | |
2012-04-19 | Avoid sending empty channel list numeric on whois if the target is not in ↵ | attilamolnar | |
any channels. | |||
2012-04-15 | Merge pull request #28 from DjSlash/classinconnectmsg | Robin Burchell | |
Show class in connectmsg | |||
2012-04-01 | Show class in connectmsg | Rutger | |
Made the connect announcement show the class a client is in, making it easy to spot if a client is in the right class. | |||
2012-04-01 | Add <connect:maxconnwarn> | Rutger | |
Created the maxconnwarn variable in the connect block, so you can make connect blocks that only warns about max connections if you want to. This reduces noise from connecting clients that have low maxlocal and/or maxglobal. It is enabled by default. |