aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
Commit message (Expand)AuthorAgeFilesLines
...
* | | Kill needless #includes in source filesGravatar Attila Molnar2014-06-147-9/+0
* | | m_spanningtree Remove declaration for nonexistent function: OnLine()Gravatar Attila Molnar2014-06-141-1/+0
* | | m_spanningtree Use vector back() where it makes senseGravatar Attila Molnar2014-06-143-4/+4
* | | m_spanningtree Initialize boolean member variables in the constructor of the ...Gravatar Attila Molnar2014-06-141-3/+2
* | | m_spanningtree Initialize TreeServer::UserCount for TreeRoot in its constructorGravatar Attila Molnar2014-06-142-4/+2
* | | Make the default ProtocolInterface instance part of class InspIRCd•••The protocol module no longer has to delete it on load and construct it on unload, only assign a new value to ServerInstance->PI Gravatar Attila Molnar2014-06-131-2/+1
* | | m_spanningtree Change allocation of the specialized ProtocolInterface to be p...Gravatar Attila Molnar2014-06-133-4/+6
* | | Change allocation of InspIRCd::Parser to be physically part of the object con...Gravatar Attila Molnar2014-06-1312-12/+12
* | | Add CommandParser::GetCommands() and typedef CommandMap and use it instead of...Gravatar Attila Molnar2014-06-131-1/+2
* | | Change allocation of InspIRCd::Threads to be physically part of the object co...Gravatar Attila Molnar2014-06-133-3/+3
* | | m_spanningtree Explicitly specify the routing for RESYNC as the one inherited...•••Command::GetRouting() defaulted to local only when RESYNC was added, but ServerCommand overrides it. Gravatar Attila Molnar2014-06-121-0/+1
* | | m_spanningtree Strip membership id from KICKs sent to 1202 protocol serversGravatar Attila Molnar2014-06-111-0/+18
* | | Send the membership id when kicking a remote user and drop KICKs with mismatc...•••This fixes the desync happening when a PART+JOIN crosses a KICK targetting the same user. Gravatar Attila Molnar2014-06-111-0/+3
* | | m_spanningtree Strip membership ids from FJOINs sent to 1202 protocol serversGravatar Attila Molnar2014-06-111-0/+32
* | | m_spanningtree Send and parse FJOINs with membership idsGravatar Attila Molnar2014-06-112-7/+27
* | | m_spanningtree Add CmdBuilder::push_raw_int()Gravatar Attila Molnar2014-06-111-0/+7
* | | m_spanningtree Use the FJOIN builder when a channel is createdGravatar Attila Molnar2014-06-111-5/+3
* | | m_spanningtree Add CmdBuilder specialization for FJOINGravatar Attila Molnar2014-06-113-12/+53
* | | m_spanningtree Send, parse and translate IJOINs with membership idsGravatar Attila Molnar2014-06-114-7/+19
* | | m_spanningtree Assign an id to new MembershipsGravatar Attila Molnar2014-06-112-1/+10
* | | m_spanningtree Initialize membership ids on loadGravatar Attila Molnar2014-06-111-0/+14
* | | Add channel TS to server-to-server INVITE to detect and drop unauthorized inv...•••The syntax of the server-to-server INVITE command changes from :<source> INVITE <target> <channel> [<expire>] to :<source> INVITE <target> <channel> <chants> [<expire>] Gravatar Attila Molnar2014-06-102-0/+27
* | | m_spanningtree Allow callers of InsertCurrentChannelTS() to customize positionsGravatar Attila Molnar2014-06-101-4/+4
* | | Use the iterator version of Channel::KickUser() in a few placesGravatar Attila Molnar2014-06-102-7/+8
* | | m_remove Make the protected rank configurable instead of hardcoding it to 50000•••Change type of ulevel and tlevel to unsigned int Gravatar Attila Molnar2014-06-091-6/+9
* | | m_remove Recognize /REMOVE <chan> <nick>•••The old syntax is now deprecated Fixes issue #860 reported by @Shawn-Smith Gravatar Attila Molnar2014-06-091-2/+5
* | | m_remove Manually forward all REMOVE messages, turn FPART into REMOVEGravatar Attila Molnar2014-06-091-18/+12
| |/ |/|
* | m_ssl_openssl Remove unused MAX_DESCRIPTORS defineGravatar Attila Molnar2014-06-071-2/+0
* | m_channames Remove temporary vector from ValidateChans()Gravatar Attila Molnar2014-06-071-9/+7
* | m_channames Call ValidateChans() from cull() on unload•••This ensures that if ValidateChans() removes everyone from a channel the channel is added to the cull list at the right time, that is, before the destruction of objects begin. The core IsChannel() is less strict than us regardless of our configuration (for now) but nevertheless this is the correct behavior. Gravatar Attila Molnar2014-06-071-1/+2
* | m_ident Close the ident socket when the object is culled instead of using hooksGravatar Attila Molnar2014-05-281-22/+6
* | m_ident Make use of the min parameter of ConfigTag::getInt()Gravatar Attila Molnar2014-05-281-3/+1
* | m_ident: Add an option to allow idents of users to still be prefixed with a '...•••Fixes #683. Some changes by @attilamolnar, original PR #684 Gravatar Robby-2014-05-281-1/+8
* | m_ssl_gnutls Don't include cap.h•••The tls cap is handled by m_starttls Gravatar Attila Molnar2014-05-261-1/+0
* | Switch to std::string::compare() from substr() in a couple of placesGravatar Attila Molnar2014-05-267-28/+17
* | Prefix all definitions in config.h to avoid potential collisions.Gravatar Peter Powell2014-05-231-1/+1
* | m_passforward: Don't forward password if the connect block required a passwor...Gravatar Googolplexed2014-05-161-0/+4
* | m_ldap: time out LDAP queries•••Set LDAP_OPT_NETWORK_TIMEOUT to 0 in m_ldap to prevent the asynchronous library calls from blocking Fix memory leak of pending queries when m_ldap is unloaded Gravatar Adam2014-05-101-12/+68
* | Remove redundant IS_LOCAL() checks discovered by static assertsGravatar Attila Molnar2014-04-264-4/+4
* | Change the OnNamesListItem() hook to return ModResult•••Return MOD_RES_DENY to exclude the user from the NAMES list Gravatar Attila Molnar2014-04-204-27/+19
* | m_spanningtree Add ServerCommand::ExtractTS() to convert string to raw TS•••Throws a ProtocolException if the input is invalid Gravatar Attila Molnar2014-04-168-40/+25
* | m_spanningtree Throw an exception on protocol violations instead of returning...•••Catch CoreExceptions, log and close the link in OnDataReady() Gravatar Attila Molnar2014-04-1610-59/+48
* | m_sajoin, m_sapart Support a comma separated list of channels•••Issue #818 Gravatar Attila Molnar2014-04-142-3/+10
* | m_sajoin Abort and report if the target user is already on the channel•••Fixes issue #820 reported by @UselessOper Gravatar Attila Molnar2014-04-141-2/+9
* | m_spanningtree Fix routing of unicast messagesGravatar Attila Molnar2014-04-142-11/+19
* | m_filter Allow exemption of messages sent to nicks specified in <exemptfromfi...•••Issue #655 Gravatar Attila Molnar2014-04-111-1/+19
* | m_filter Rename config key used in exemptfromfilter from "channel" to "target...Gravatar Attila Molnar2014-04-111-3/+6
* | m_filter Rename exemptfromfilter field to exemptedchans, use std::set::count()Gravatar Attila Molnar2014-04-111-6/+6
* | m_filter Use case insensitive compare for exempted targets, add typedef for t...Gravatar Attila Molnar2014-04-111-2/+5
* | m_services_account Remove now needless workaround added to 2.0 to display the...Gravatar Attila Molnar2014-04-091-29/+2