summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-01-17m_hideoper Fix wrong /WHO output for hidden opers if the channel name ↵Attila Molnar
contains '*'
2015-01-17Fix elines not matching elined users when rechecking elined statusAttila Molnar
2015-01-17Merge pull request #968 from ShutterQuick/insp20+sporderAttila Molnar
cmd_list: Give +s precedence to +p
2015-01-17cmd_list: Give +s precedence to +pDaniel Vassdal
When +ps is set, handle it as +s (most restrictive) instead of +p
2015-01-17Merge pull request #966 from SaberUK/insp20+fix-error-messageAttila Molnar
Fix a blank error message when trying to load a module with a path.
2015-01-16Verify that the chan in chanlist is in fact the same object as us in ↵Attila Molnar
Channel::CheckDestroy() before proceeding
2015-01-16Gracefully handle multiple Channel::CheckDestroy() calls on the same objectAttila Molnar
Don't add the channel to the cull list more than once
2015-01-16Fix a blank error message when trying to load a module with a path.Peter Powell
2015-01-14cmode_k Fix oversight in substr() conversionAttila Molnar
While at it, introduce a named constant for maximum key length
2015-01-14Merge branch 'master+stfjoinforward'Attila Molnar
2015-01-12Always penalize clients executing a command which fails before running the ↵Attila Molnar
handler, even if the command has 0 penalty
2015-01-12Increase penalty for some core commandsAttila Molnar
2015-01-12Fix harmless uninitialized variable usage on startup if the config is incorrectAttila Molnar
2015-01-11Fix issues with some numerics introduced in the WriteNumeric() conversion ↵Attila Molnar
and elsewhere
2015-01-11Merge pull request #963 from SaberUK/insp20+nuke-data-dumperAttila Molnar
Don't load Data::Dumper in the configure script.
2015-01-11Don't load Data::Dumper in the configure script.Peter Powell
This is not used and apparently there are some distros which do not include it as part of the system Perl.
2015-01-10Store iovec array on the stack instead of heap allocating it for the ↵Attila Molnar
lifetime of writev() in StreamSocket::DoWrite()
2015-01-10Remove pointless fd == INT_MAX check from StreamSocket::DoWrite()Attila Molnar
2015-01-10Remove some unnecessary NULL checksAttila Molnar
2015-01-10Reduce std::string::substr() usageAttila Molnar
substr() returns a new string while erase() and assign() modify the existing one
2015-01-10Remove the unused OnGlobalOper hookAttila Molnar
2015-01-09m_spanningtree Increase maximum generated FJOIN line size to 510Attila Molnar
2015-01-09m_spanningtree Forward FJOINs with correct TS, modes and userlistAttila Molnar
2015-01-09m_spanningtree Change name and scope of commait in FJOIN handlerAttila Molnar
2015-01-09m_spanningtree Add overload for add() and has_room(), giving more ↵Attila Molnar
flexibility to subclasses of CommandFJoin::Builder
2015-01-09m_spanningtree Add CmdBuilder::push_raw() overload for rangesAttila Molnar
2015-01-09m_spanningtree Add source server parameter to CommandFJOIN::Builder constructorAttila Molnar
Default it to this server
2015-01-03Fix a snotice in m_spanningtree incorrectly using an unsigned long.Peter Powell
This value can be negative so it should be a signed long not an unsigned long.
2015-01-03Merge pull request #959 from Alef-Burzmali/master+fixcloakingAttila Molnar
Fix a regression in m_cloaking
2015-01-03cmd_invite Send RPL_AWAY after RPL_INVITING if the target user is awayAttila Molnar
This is consistent with other server implementations and the RFC
2014-12-30Fix signon time of clients being off by dns_timeout secondsAttila Molnar
2014-12-30Fix User::age being incorrectly used in some places instead of signonAttila Molnar
2014-12-29Fix a regression in m_cloakingThomas Fargeix
5c7db14a5 made the cloak use hex-encoded hashes instead of the binary output.
2014-12-27m_check Fix non-standard format specifier %s passed to strftime() causing ↵Attila Molnar
problems on systems not supporting it (Windows)
2014-12-19Merge branch 'master+listmode'Attila Molnar
2014-12-19Merge branch 'master+flatmap'Attila Molnar
2014-12-18Merge branch 'master+serverlimits'Attila Molnar
2014-12-18Merge pull request #953 from SaberUK/master+configure-oversightsAttila Molnar
Fix some oversights from #895.
2014-12-18Fix some oversights from #895.Peter Powell
- Always write the configure cache file as it is needed for updating the makefile when --update is called. - List the modules which have been enabled in the "configuration complete" message. - Silence some harmless warnings about installing PEM files which don't exist.
2014-12-16Drop setter is empty check when displaying listmodesAttila Molnar
The setter cannot be empty unless the nick of a client is empty which is not possible
2014-12-16Display listmodes in the order in which they are in the container instead of ↵Attila Molnar
reverse iterating
2014-12-16Change listmode storage type to vectorAttila Molnar
2014-12-15Change type of some associative containers to their flat versions, including ↵Attila Molnar
Extensible storage
2014-12-15Add flat_[multi]{map,set} containersAttila Molnar
2014-12-15Add typedef ModeParser::ModeWatcherMap, remove ModeWatchIterAttila Molnar
2014-12-15Add typedef PrivSet for OperInfo::AllowedOperCommands and AllowedPrivsAttila Molnar
2014-12-15Merge branch 'master+callerid' into master+flatmapAttila Molnar
2014-12-10m_httpd On module unload close all connections hooked by the module being ↵Attila Molnar
unloaded
2014-12-10m_callerid Change CallerIdDataSet (wholistsme) to be a vectorAttila Molnar
2014-12-10m_callerid Add typedefs for containers in callerid_dataAttila Molnar