aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #27 from DjSlash/maxconnwarn v2.0.6rc1Gravatar Robin Burchell2012-04-092-4/+8
|\ | | | | Add <connect:maxconnwarn>
| * Add <connect:maxconnwarn>Gravatar Rutger2012-04-012-4/+8
| | | | | | | | | | | | | | Created the maxconnwarn variable in the connect block, so you can make connect blocks that only warns about max connections if you want to. This reduces noise from connecting clients that have low maxlocal and/or maxglobal. It is enabled by default.
* | Merge pull request #25 from DjSlash/colour-to-colorGravatar Robin Burchell2012-04-092-7/+7
|\ \ | | | | | | Replace [cC]olour with [cC]olor
| * | Replace [cC]olour with [cC]olorGravatar Rutger2012-04-012-7/+7
| |/ | | | | | | | | Making things consistent, the modules are named '...color', let's keep on using that instead of 'colour'.
* / Typofix in m_ojoinGravatar Rutger2012-04-011-1/+1
|/ | | | In m_ojoin 'business' was miss-spelled.
* Fixed infinite loop cauesd by invalid dns packetsGravatar Adam2012-03-271-2/+9
|
* Fixed out of bounds memory access from malformed DNS queries that have an ↵Gravatar Adam2012-03-261-1/+1
| | | | invalid length label. Introduced in a6a07de0daa353bcd29056a4535a9c4784c113c8.
* m_hostchange: Fix a typo preventing port filters from workingGravatar Kyle Fuller2012-03-221-1/+1
|
* Typo fixes.Gravatar Peter Powell2012-03-211-1/+1
|
* dns: cleanup ResultIsReady() prototypeGravatar William Pitcock2012-03-201-6/+6
|
* dns: more hardeningGravatar William Pitcock2012-03-201-2/+7
| | | | | | | - don't trust rr.rdlength - don't accept replies we know are impossible for AAAA/A records - don't try to process record types we do not know about specifically (this behaviour just leads to disaster)
* dns: reject messages with lengths larger than DNSHeader with prejudiceGravatar William Pitcock2012-03-201-10/+33
| | | | This also includes when decompressing name entries.
* dns: iterators which are integer should always be unsigned, else an integer ↵Gravatar William Pitcock2012-03-201-1/+1
| | | | | | underflow is possible. Signed-off-by: William Pitcock <nenolod@dereferenced.org>
* m_remove: forbid removing ulined usersGravatar Justasic2012-02-251-0/+5
|
* m_chghost: Fix incorrect length check pointed out by ThalesGravatar Daniel De Graaf2012-02-251-5/+6
|
* Make m_shun work on aliasesGravatar Jens Voss2012-01-211-0/+6
|
* Move my name from regular contributors to developersGravatar Jackmcbarn2011-09-282-12/+13
|
* Fix stats letter for shunsGravatar Jackmcbarn2011-08-271-2/+1
|
* Add -lgcrypt to m_ssl_gnutls because this is no longer pulled in by all ↵Gravatar Daniel De Graaf2011-08-071-1/+1
| | | | versions of gnutls
* Fix compile warningGravatar Daniel De Graaf2011-07-231-2/+0
|
* Remove harmless but scary-looking logfile linesGravatar Daniel De Graaf2011-07-192-7/+0
|
* Allow use of absolute paths with m_nationalcharsGravatar Jackmcbarn2011-07-191-1/+2
|
* <connect deny=""> (or allow="") should not match all usersGravatar Daniel De Graaf2011-07-171-1/+1
|
* Only write pidfile if we have parsed a valid configurationGravatar Daniel De Graaf2011-07-171-3/+4
|
* 2.0.5 release v2.0.5Gravatar Daniel De Graaf2011-06-231-1/+1
|
* Always use local SID as the source for PONG repliesGravatar Daniel De Graaf2011-06-231-1/+1
|
* Resolve /STATS S conflict between SVSHOLD and SHUNGravatar Daniel De Graaf2011-06-231-1/+1
|
* Remove possibly dangerous skip of VerifyCertificateGravatar Daniel De Graaf2011-06-232-2/+2
|
* Fix initialization of SSL certificate field on connectGravatar Daniel De Graaf2011-06-231-0/+1
|
* Fix WSAEWOULDBLOCK error on WindowsGravatar Daniel De Graaf2011-06-181-0/+1
| | | | | Making a connection and then immediately accepting it is not synchronous on Windows; force the accept to block and wait for the connection we just made.
* Fix extras compilation under WindowsGravatar Adam2011-06-187-14/+34
|
* Fix incorrect typecastGravatar Daniel De Graaf2011-06-061-1/+1
|
* Fix recursion of QuitUser in SendQ quitsGravatar Jackmcbarn2011-05-232-7/+18
|
* 2.0.4 release v2.0.4Gravatar Daniel De Graaf2011-05-081-1/+1
|
* Fix IPv6 test on WindowsGravatar Adam2011-04-191-1/+1
|
* Merge commit 'refs/merge-requests/5' of ↵Gravatar Daniel De Graaf2011-04-182-4/+4
|\ | | | | | | git://gitorious.org/inspircd/inspircd into insp20
| * Fix bug 126, thanks to SebGravatar DjSlash2011-03-301-1/+1
| |
| * Values were -1, couldnt find an explanation for that. So appliedGravatar DjSlash2011-03-181-3/+3
| | | | | | | | | | submitted patch from bug 114 (thanks to DarkStorm) and removed additional -1's.
* | Fix mis-implemented irc::sockets::cidr_mask::operator<Gravatar Daniel De Graaf2011-04-181-2/+5
| |
* | Fixed Windows build on VS 2010Gravatar Adam2011-04-108-8/+11
| |
* | Revert to old sepstream logic until a proper fix is finishedGravatar Jackmcbarn2011-04-011-5/+14
| |
* | Fix sepstream logic when multiple consecutive separators are encounteredGravatar Jackmcbarn2011-03-281-14/+5
| |
* | Display a message when using /greloadmoduleGravatar Jackmcbarn2011-03-231-1/+20
|/
* Fix for bug 47Gravatar DjSlash2011-03-181-1/+1
|
* Fix excessive memory use in kqueueGravatar Daniel De Graaf2011-03-031-1/+1
| | | | | The maximum number of file descriptors was incorrectly using the OS maximum, not the process maximum. Thanks to Liath for finding & testing.
* Fix timeout defaulting to zero for link blocksGravatar Daniel De Graaf2011-02-281-1/+1
|
* Fix bug #122Gravatar Jackmcbarn2011-02-141-2/+6
|
* 2.0.3 release v2.0.3Gravatar Daniel De Graaf2011-02-011-1/+1
|
* Fix bug #83Gravatar Jackmcbarn2011-01-301-1/+1
|
* Fix bug #110Gravatar Jackmcbarn2011-01-241-10/+16
|