| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | | m_spanningtree Move SVSMODE -> MODE translation into the appropiate place, ig... | attilamolnar | 2013-06-12 | 2 | -8/+6 |
| * | | m_spanningtree Rewrite incoming (E|G|K|Q|Z)LINE commands from 2.0 servers int...•••These commands were never documented to be usable in the server protocol but we accepted them nevertheless from servers
| attilamolnar | 2013-06-12 | 1 | -0/+23 |
| * | | Get rid of the OnRemoteKill hook, make use of GetRouting() and TR_CUSTOM to r... | attilamolnar | 2013-06-12 | 2 | -17/+1 |
| * | | Implement GetRouting() in core commands that require it, remove ugly workarou... | attilamolnar | 2013-06-12 | 1 | -9/+1 |
| * | | Change command name parameter of OnPostCommand to be a Command* | attilamolnar | 2013-06-12 | 4 | -12/+7 |
| * | | Simplify stringjoiner: take 1 parameter, join from begin() to end() and use s... | attilamolnar | 2013-06-12 | 2 | -4/+4 |
| * | | Create SSLIOHook interface that provides GetCertificate() | attilamolnar | 2013-06-07 | 1 | -10/+1 |
| * | | Create IOHook interface (extracted from Module) | attilamolnar | 2013-06-07 | 2 | -2/+4 |
| * | | Use InspIRCd::Format instead of snprintf(). | Peter Powell | 2013-06-06 | 1 | -40/+30 |
| * | | Compare to ServerLimits::MaxLine instead of MAXBUF. | Peter Powell | 2013-06-06 | 1 | -1/+1 |
| * | | Reserve ServerLimits::MaxLine instead of MAXBUF. | Peter Powell | 2013-06-06 | 1 | -1/+1 |
| * | | Merge insp20 | attilamolnar | 2013-06-06 | 3 | -6/+1 |
| |\| |
|
| | * | Remove unnecessary string copies and dead code | attilamolnar | 2013-06-05 | 3 | -31/+5 |
| | * | m_spanningtree Fix FIDENT routing•••A new FIDENT was broadcast for each incoming FIDENT causing harmless but unnecessary server to server traffic
| attilamolnar | 2013-06-04 | 1 | -2/+1 |
| | * | Remove unused variables, avoid copies where possible, check empty() instead o...•••Most of these were detected by cppcheck
| attilamolnar | 2013-05-16 | 1 | -1/+0 |
| * | | Route WALLOPS like a regular command, remove OnWallops hook | attilamolnar | 2013-06-02 | 2 | -12/+1 |
| * | | Deduplicate RemoveMode() implementations•••The default (core) implementation can now remove prefix modes
The modestacker parameter is now mandatory
| attilamolnar | 2013-05-27 | 1 | -1/+1 |
| * | | Change CacheRefreshTimer tick time back to 5 minutes | Adam | 2013-05-23 | 1 | -1/+1 |
| * | | Merge pull request #545 from SaberUK/master+logging-cleanup•••Clean up the logging system (part 1 of 2). | Attila Molnar | 2013-05-21 | 11 | -18/+18 |
| |\ \ |
|
| | * | | Fix spacing in calls to LogManager::Log. | Peter Powell | 2013-05-19 | 11 | -18/+18 |
| * | | | Convert XLine::Displayable to return a std::string. | Peter Powell | 2013-05-21 | 1 | -2/+4 |
| * | | | Remove OnUserPreNotice and OnUserNotice hooks, add MessageType argument to On...•••All modules (except m_nonotice) that perform filtering on messages have common logic for handling PRIVMSGs and NOTICEs and most of them run the exact same code in both cases
| attilamolnar | 2013-05-20 | 2 | -10/+4 |
| * | | | Replaced vsnprintf with VAFORMAT pretty much everywhere. | Daniel Vassdal | 2013-05-18 | 1 | -6/+2 |
| |/ / |
|
| * | | Change the signature of User::ForceNickChange() to accept const std::string& ... | attilamolnar | 2013-05-18 | 4 | -6/+6 |
| * | | Remove the size argument from IsChannel and IsNick.•••There was only one case (which was probably an error) where these
methods were not set to their ServerLimits value.
| Peter Powell | 2013-05-18 | 1 | -1/+1 |
| * | | 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 | 4 | -4/+19 |
| * | | Tidy up keywords on module methods.•••- 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.
| Peter Powell | 2013-05-15 | 5 | -53/+52 |
| * | | Merge pull request #523 from SaberUK/master+server-notice•••Add method for writing server notices. | Attila Molnar | 2013-05-14 | 3 | -5/+5 |
| |\ \ |
|
| | * | | 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 | 3 | -5/+5 |
| * | | | m_spanningtree UID handler: Fix parsing user modes•••Spotted by @ShutterQuick
Issue #532
| attilamolnar | 2013-05-14 | 1 | -3/+5 |
| |/ / |
|
| * | | Merge insp20 | attilamolnar | 2013-04-28 | 4 | -28/+64 |
| |\| |
|
| | * | m_spanningtree Fix crash when connecting to a remote server that has the same...•••See 49223cfe12ecd9071123f724e615e63841f2421d
| attilamolnar | 2013-04-23 | 1 | -2/+3 |
| | * | m_spanningtree Fix IS_LOCAL() check in OnRehash handler | attilamolnar | 2013-04-18 | 1 | -1/+1 |
| | * | m_spanningtree Create new TreeServers for incoming connections only when they... | attilamolnar | 2013-04-10 | 3 | -25/+60 |
| * | | 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 | 5 | -44/+68 |
| * | | m_spanningtree Move CacheTimer into utils | attilamolnar | 2013-04-21 | 6 | -46/+21 |
| * | | Timer changes and TimerManager enhancements•••Timer::Tick() now has a bool return value: if false is returned the timer is deleted using operator delete, otherwise, if it's a repeating timer then it's rescheduled (readded)
Timers are removed from the TimerManager automatically at destruction
Timers are now stored in a multimap instead of a sorted vector
| attilamolnar | 2013-04-21 | 3 | -4/+6 |
| * | | Fix building with libc++.•••- Purged std::tr1::strlower (was never used).
- Moved std::tr1::insensitive to irc::insensitive.
- Added TR1NS macro to point to the correct C++ TR1 namespace.
| Peter Powell | 2013-04-19 | 1 | -1/+1 |
| * | | Use std::string internally in UIDGenerator, move UUID_LENGTH into the class a... | attilamolnar | 2013-04-14 | 2 | -2/+2 |
| * | | m_spanningtree Remove redundant first parameter of PING/PONG | attilamolnar | 2013-04-13 | 4 | -51/+61 |
| * | | m_spanningtree Ignore hopcount in incoming SERVER command, always send 0 at b... | attilamolnar | 2013-04-13 | 3 | -31/+8 |
| * | | m_spanningtree Netburst: If a topic was ever set, send it even if it's empty•••A new but empty topic should override a non-empty old topic
| attilamolnar | 2013-04-13 | 1 | -1/+4 |
| * | | m_spanningtree Add channel timestamp to FTOPIC | attilamolnar | 2013-04-13 | 5 | -7/+39 |
| * | | m_spanningtree Add channel timestamp to channel METADATA | attilamolnar | 2013-04-13 | 6 | -11/+91 |
| * | | m_spanningtree Introduce IJOIN and RESYNC•••When a local user joins an existing channel, instead of an FJOIN, send an IJOIN with the channel name being the first parameter.
If the joining user received prefix modes, append the channel TS and the prefix mode letters as the second and third parameters.
When receiving an IJOIN, first check if the target channel exists. If it does not exist, ignore the join (that is, do not create the channel) and send a RESYNC back to the source.
If the channel does exist then join the user, and in case any prefix modes were sent (found in the 3rd parameter), compare the TS of the channel to the TS in the IJOIN (2nd parameter).
If the timestamps match, set the modes on the user, otherwise ignore the modes.
Outgoing IJOINs to 1202 protocol servers are converted to FJOINs, but the channel mode parameter is left empty ("+").
| attilamolnar | 2013-04-13 | 4 | -10/+183 |
| * | | m_spanningtree Bump protocol version and remove unused CAPAB CAPABILITIES ent... | attilamolnar | 2013-04-13 | 2 | -20/+24 |
| * | | Channel::JoinUser() and Channel::ForceChan() changes•••Convert static Channel::ForceChan() to non-static Channel::ForceJoin() that joins a user to a channel, no permission checks
The (static) Channel::JoinUser() now has a LocalUser parameter, and no longer have TS and bursting parameters. If the channel doesn't exist, it is created using current time as TS
| attilamolnar | 2013-04-13 | 2 | -3/+4 |
| * | | m_spanningtree Remove unneeded #includes | attilamolnar | 2013-04-12 | 40 | -155/+9 |
| * | | m_spanningtree FJOIN handler: Refactor, update doc•••Split the core function into several smaller functions
Accept userlist entries having no comma at all
| attilamolnar | 2013-04-12 | 2 | -133/+127 |
| * | | m_spanningtree Netburst: Refactor SendChannelModes()•••Rename it to SyncChannel() and change it to take a Channel* parameter, move iteration into DoBurst()
| attilamolnar | 2013-04-12 | 2 | -25/+21 |