aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Release v2.0.17 v2.0.17Gravatar Attila Molnar2014-07-241-1/+1
* Update example configuration files, fix typos and case•••Mention m_regex_stdlib in the list of regex providers after m_filter Gravatar Attila Molnar2014-07-245-39/+49
* m_spanningtree Always treat the remote client as the winner on nick collision...Gravatar Attila Molnar2014-07-242-4/+15
* Make sure the DN strings obtained from the SSL mods are always validGravatar Attila Molnar2014-07-242-4/+22
* Update aliases/anope.conf.exampleGravatar Adam2014-07-231-11/+4
* m_hideoper: Hide hidden opers from /stats P. #874Gravatar Adam2014-07-191-1/+22
* Merge pull request #878 from SaberUK/insp20+fix-minor-issues•••Fix various small problems with configure.Gravatar Attila Molnar2014-06-292-12/+12
|\
| * Fix various small problems with configure.•••- Fix temporary files not being deleted after use. - Fix the option for disabling rpath. - Fix the help message: * Fix indentation of some help options. * Fix default paths not containing 'run'. * Remove documentation for --disable-ipv6 (exists but does nothing). * Remove documentation for --library-dir (does not exist). - Fix some minor errors in messages. Gravatar Peter Powell2014-06-262-12/+12
|/
* Merge pull request #879 from SaberUK/insp20+fix-denychans•••Fix copy/paste error in m_denychans.Gravatar Attila Molnar2014-06-261-1/+1
|\
| * Fix copy/paste error in m_denychans.Gravatar Peter Powell2014-06-241-1/+1
* | m_chghost Allow ulined servers to change the host of unregistered users (for ...Gravatar Attila Molnar2014-06-181-1/+2
|/
* Merge pull request #872 from theckman/remove_whitespace_from_docs•••Remove whitespace from docsGravatar Attila Molnar2014-06-156-16/+16
|\
| * remove unneeded whitespace from the docs/examplesGravatar Tim Heckman2014-06-146-16/+16
|/
* Fix harmless loop off-by-ones found by MoonlightningGravatar satmd2014-06-075-6/+6
* m_spanningtree Forward NICK messages when they cause a collision with the new...•••Suppressing these messages meant that we relied on an appropriate NICK to come from the direction the SAVE was sent to; this left all servers behind us uninformed until the target server of the SAVE reacted with a nick change to uuid. This was problematic because someone can legitimately change nick to the past nick of the SAVEd user on a server that already has the SAVEd user with the uuid nick and that nick change message can reach servers that haven't yet seen the nick change to uuid of the SAVEd user. Gravatar Attila Molnar2014-06-061-7/+7
* m_spanningtree Fix cleanup of connections when unloading a module that provid...Gravatar Attila Molnar2014-06-061-0/+3
* Update server.cpp•••Rewrote "invalid credentials" error message to remove confusion regarding "server snomask", which some users interpreted as "I must make sure the snomask on each server is identical" (which makes no sense), when really the intention is basically "look at the logs on the other server". Gravatar Dan Parsons2014-05-211-2/+2
* Merge pull request #854 from SaberUK/insp20+deprecated-plist-entry•••Replace deprecated entry in launchd config with the modern equivalent.Gravatar Attila Molnar2014-05-181-2/+2
|\
| * Replace deprecated entry in launchd config with the modern equivalent.Gravatar Peter Powell2014-05-181-2/+2
|/
* Update year in resource file for WindowsGravatar Attila Molnar2014-05-101-1/+1
* Fix m_permchannels and m_xline_db on Windows•••The call to remove() can fail if the database doesn't already exist. Just ignore the error, which effectively makes the rename() call below work as it does on nix Gravatar Adam2014-05-082-12/+2
* Do not export callers•••Their functions are all inlined and Windows gives unresolved symbol errors Gravatar Adam2014-05-082-13/+13
* m_cgiirc Call User::InvalidateCache() after changing host and dhost in OnChec...Gravatar Attila Molnar2014-05-011-0/+1
* m_spanningtree Advertise the availability of m_globops in CAPAB CAPABILITIESGravatar Attila Molnar2014-04-291-0/+6
* m_spanningtree Set the bursting flag in the FJOIN handler based on whether th...•••Previously the flag was true if our route to the source was bursting, which resulted in m_joinflood incorrectly registering netjoins when a remote server was bursting Fixes issue #839 reported by @joshtek0 Gravatar Attila Molnar2014-04-261-2/+3
* Merge pull request #832 from SaberUK/insp20+fix-ssl-question•••Backport questions from master's genssl tool.Gravatar Attila Molnar2014-04-203-19/+20
|\
| * Backport questions from master's genssl tool.Gravatar Peter Powell2014-04-163-19/+20
* | Fix undefined symbol error on module load if compiled with Clang 3.4•••Fixes issue #803 reported by @SaberUK Gravatar Attila Molnar2014-04-192-10/+10
* | Compress the Windows installer with zlib to reduce AV false positivesGravatar Attila Molnar2014-04-131-1/+1
* | Change Windows libraries to be dynamically linkedGravatar Adam2014-04-136-22/+25
|/
* m_ssl_openssl Avoid Applink on Windows by calling PEM_read_bio_DHparams() ins...Gravatar Attila Molnar2014-04-131-0/+11
* Allow uppercase letters in IPv6 CIDR masksGravatar Attila Molnar2014-04-131-1/+1
* m_auditorium Handle NULL return from Channel::GetUser() in OnSendWhoLine()•••Found by Coverity, CID: 1135647 Gravatar Attila Molnar2014-04-131-1/+1
* Ignore NULL callbacks in ModuleManager::Reload()•••Found by Coverity, CID: 1201453 Gravatar Attila Molnar2014-04-132-2/+2
* m_ojoin Remove pointless FindChan() call•••Found by Coverity, CID: 1135649 Gravatar Attila Molnar2014-04-131-1/+0
* Change FormatMessage() usage in DLLManager::RetrieveLastError() to match Sock...•••See 4451fd13a1accec8d7c2b1bb7fdafd6e50a2566b Gravatar Attila Molnar2014-04-121-2/+4
* Filter out newlines from error messages on WindowsGravatar Attila Molnar2014-04-123-1/+16
* m_watch Be more strict when checking whether the watch list of a user is full•••After a rehash MAX_WATCH can become lower than it was before Gravatar Attila Molnar2014-04-121-1/+1
* Merge pull request #827 from Robby-/insp20-helpopconf•••Some more helpop config updates, and fix a few module syntax messages.Gravatar Attila Molnar2014-04-128-249/+284
|\
| * Some more helpop config updates.Gravatar Robby-2014-04-122-242/+277
| * Correct the syntax messages of a few modules.Gravatar Robby-2014-04-126-7/+7
|/
* Release 2.0.16 v2.0.16Gravatar Attila Molnar2014-04-061-1/+1
* Fix IPv6 address handling in 6aaf7047297b739377e7d509cb914f32447fb281Gravatar Attila Molnar2014-04-061-1/+1
* Fix typo in helpop-full that prevented it from loading and other minor helpop...Gravatar Attila Molnar2014-04-062-3/+4
* Fix snotice about disabled command usage being sent to the wrong snomaskGravatar Attila Molnar2014-04-041-1/+1
* Add REG_ALL checks to treat unregistered users as nonexistent in more casesGravatar Attila Molnar2014-04-046-7/+17
* Fix typos and update text in the configure script•••Some of these were picked from #448 Gravatar Attila Molnar2014-04-041-18/+16
* Major example configuration and helpop update•••Big thanks to @m4z (#621) and @Robby- (#630) who contributed a lot to this Gravatar Attila Molnar2014-04-049-527/+489
* m_watch Validate targ before use, noticed while rewriting m_watch for 2.2Gravatar Attila Molnar2014-03-271-2/+2
* m_globalload Don't pass a callback to ModuleManager::Reload() if reloading m_...Gravatar Attila Molnar2014-03-261-1/+6