| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | | Convert cmd_modenotice into an optional module | attilamolnar | 2013-09-11 | 1 | -0/+7 |
| * | | Move prefix mode specific fields and getters into PrefixMode•••Add ModeHandler::IsPrefixMode()
| attilamolnar | 2013-09-11 | 2 | -4/+7 |
| * | | m_spanningtree Minor fixes•••- Handle the case when servers SQUIT themselves
- Fix extra space in channel messages
| attilamolnar | 2013-09-10 | 2 | -4/+11 |
| * | | m_spanningtree Handle ERROR when fully connected | attilamolnar | 2013-09-10 | 1 | -0/+6 |
| * | | m_spanningtree Move c2s commands out of SpanningTreeCommands to auto register... | attilamolnar | 2013-09-10 | 4 | -7/+14 |
| * | | Automatically register ServiceProviders created by modules | attilamolnar | 2013-09-08 | 2 | -3/+1 |
| * | | Fix compile warnings as seen on g++ 4.4.7 | Adam | 2013-09-08 | 2 | -12/+12 |
| * | | Remove ModuleManager::GetAllModuleNames(), use GetModules() instead | attilamolnar | 2013-08-30 | 1 | -6/+7 |
| * | | Replace OnRehash() with ReadConfig() that is called on boot, on module load a...•••This eliminates the need for calling OnRehash() in init()
| attilamolnar | 2013-08-30 | 3 | -5/+3 |
| * | | Merge insp20 | attilamolnar | 2013-08-30 | 3 | -5/+37 |
| |\| |
|
| | * | m_spanningtree When an IOHook goes away close all pending connections that us... | attilamolnar | 2013-08-21 | 2 | -1/+10 |
| | * | Use server ids when propagating squits | Adam | 2013-07-26 | 1 | -2/+2 |
| | * | m_spanningtree FJOIN handler: Merge and take maxmodes into consideration when... | attilamolnar | 2013-06-12 | 1 | -5/+24 |
| * | | m_spanningtree Propagate topic changes via FTOPIC in order to prevent desync ...•••TOPIC is no longer accepted from servers using the new protocol
| attilamolnar | 2013-08-28 | 6 | -27/+76 |
| * | | m_spanningtree Introduce command builders | attilamolnar | 2013-08-27 | 21 | -277/+404 |
| * | | m_spanningtree Changes to TreeSocket::WriteLine() to avoid string copies•••- Change argument type to a reference to avoid copies of the string object
- If the std::string implementation is using copy-on-write then calling operator[] on a mutable string results in a copy; avoid this by calling .c_str() instead
| attilamolnar | 2013-08-27 | 2 | -6/+12 |
| * | | Fix Windows build and a few more problems | attilamolnar | 2013-08-27 | 1 | -2/+2 |
| * | | Fix indentation | attilamolnar | 2013-08-27 | 2 | -11/+11 |
| * | | m_spanningtree Allow server-to-server command handlers to specify whether the...•••To make life easier for handlers accepting servers only as source, pass them a TreeServer* so they don't have to call FindServer()
| attilamolnar | 2013-08-25 | 13 | -115/+123 |
| * | | Clean up the protocol interface | attilamolnar | 2013-08-25 | 3 | -33/+12 |
| * | | m_spanningtree Add TreeServer::GetChildren() that replaces ChildCount() and G... | attilamolnar | 2013-08-22 | 7 | -54/+33 |
| * | | m_spanningtree Remove duplicate code for sending channel messages from RouteC... | attilamolnar | 2013-08-22 | 3 | -24/+13 |
| * | | m_spanningtree Implement DoOneToMany() using DoOneToAllButSender() | attilamolnar | 2013-08-22 | 6 | -27/+13 |
| * | | m_spanningtree Change TreeServer::GetSocket() to always return the socket tha...•••The only exception is the tree root (us) which has no associated socket (NULL)
Add TreeServer::IsRoot() and IsLocal() helpers
| attilamolnar | 2013-08-22 | 11 | -94/+68 |
| * | | Fix a few problems•••- Fix configuration issue on systems without both GnuTLS and OpenSSL. (@SaberUK)
- Do not set Membership::modes in ForceJoin() incorrectly to privs
- Fix crash when spanningtree detects a configuration error on load
| attilamolnar | 2013-08-22 | 1 | -0/+2 |
| * | | Remove cmd_map from the core | attilamolnar | 2013-08-19 | 5 | -36/+46 |
| * | | m_spanningtree Minor cleanup of functions | attilamolnar | 2013-08-19 | 8 | -31/+13 |
| * | | m_spanningtree Move all server-to-server command handlers into handler classes•••These commands are not registered in or called by the core. When looking for the handler of a command a new command table is searched first which contains all server-to-server commands. If a handler cannot be found in there, the core command table is consulted.
| attilamolnar | 2013-08-18 | 34 | -501/+583 |
| * | | m_spanningtree Propagate oper-only quit reason using METADATA, remove OPERQUIT | attilamolnar | 2013-08-18 | 5 | -57/+23 |
| * | | m_spanningtree Remove SpanningTreeUtilities* fields and parameters | attilamolnar | 2013-08-17 | 20 | -60/+49 |
| * | | Remove $ModDep comments | attilamolnar | 2013-08-15 | 17 | -37/+0 |
| * | | Store oper types and opers in separate containers | attilamolnar | 2013-08-13 | 1 | -2/+2 |
| * | | Add ConfigTag::getDuration() with optional bounds checking | attilamolnar | 2013-08-12 | 1 | -7/+2 |
| * | | 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 |
| * | | Fix a couple of issues•••- Wrong doc for Snomask::GetDescription()
- Incorrect idle time when WHOISing remote users
- String + int = garbage
- Remote MODE commands (user mode changes) being broadcast in addition to being forwarded
- Incorrect revision being shown
| attilamolnar | 2013-08-08 | 1 | -1/+1 |
| * | | Automatically attach modules to events | attilamolnar | 2013-08-04 | 1 | -11/+0 |
| * | | Change the syntax of FOREACH macros to be less dumb. | Adam | 2013-08-04 | 5 | -10/+10 |
| * | | Modify the log message to contain the log type. | Peter Powell | 2013-08-04 | 1 | -1/+1 |
| * | | Change modules to use the MODNAME constant when logging.•••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.
| Peter Powell | 2013-08-04 | 15 | -33/+33 |
| * | | Remove a few not-so-useful debug messages | attilamolnar | 2013-08-04 | 1 | -1/+0 |
| * | | m_spanningtree Change the type of TreeServer::ServerName to std::string | attilamolnar | 2013-07-24 | 8 | -29/+17 |
| * | | m_spanningtree Cleanup TreeServer and TreeSocket construction/destruction | attilamolnar | 2013-07-24 | 5 | -87/+28 |
| * | | Enable the LINK snomask from m_spanningtree, remove unused FLOOD snomask | attilamolnar | 2013-07-20 | 1 | -0/+2 |
| * | | Get rid of enum UserModes and mark User::modes as private | attilamolnar | 2013-07-19 | 1 | -1/+4 |
| * | | Seperate ModeReference into ChanModeReference and UserModeReference | attilamolnar | 2013-07-19 | 1 | -1/+1 |
| * | | Remove $Core and $Mod* comments apart from $ModDep. | Peter Powell | 2013-07-04 | 2 | -4/+0 |
| * | | Replace hardcoded mode letters passed to IsModeSet() and GetModeParameter() w... | attilamolnar | 2013-07-01 | 1 | -1/+1 |
| * | | Fix a few oversights•••This partially reverts e0cb6bd46fb1d804ad6adea5688c844f7e1a0f6f
| attilamolnar | 2013-07-01 | 1 | -1/+2 |
| * | | Rewrite CommandParser::TranslateUIDs() | attilamolnar | 2013-06-13 | 3 | -9/+3 |
| * | | Introduce ModeProcessFlags, can be passed to ModeParser::Process() to indicat...•••Change ProtocolInterface::SendMode() to take source and destination parameters, and call it from the mode parser whenever the mode change is global
This deprecates the ambiguous InspIRCd::SendMode() and InspIRCd::SendGlobalMode() interface (the latter sent mode changes originating from local users twice, etc.)
| attilamolnar | 2013-06-13 | 6 | -70/+36 |