aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #29 from Shawn-Smith/insp21+joinpart_sno v2.1b3Gravatar Robin Burchell2012-04-091-0/+65
|\ | | | | [2.1] Add new module for join/part snomasks (m_joinpartsno)
| * Added the module for join/part snomasksGravatar Shawn Smith2012-04-021-0/+65
| |
* | Merge pull request #20 from Shawn-Smith/insp21+umode_redirectGravatar Robin Burchell2012-04-091-13/+52
|\ \ | | | | | | [2.1] Added usermode +L to opt-out of forced redirection (m_redirect)
| * | Renamed from RedirectUMode/redirect_u to AntiRedirect/antiredirectGravatar Shawn Smith2012-03-301-3/+3
| | |
| * | Changed re and re_u to redirect_chmode and redirect_umodeGravatar Shawn Smith2012-03-291-8/+8
| | |
| * | Added usermode +L to m_redirect to opt-out of forced redirection.Gravatar Shawn Smith2012-03-291-8/+47
| | |
* | | Merge pull request #19 from Shawn-Smith/insp21+sslqueriesGravatar Robin Burchell2012-04-091-4/+69
|\ \ \ | |_|/ |/| | [2.1] Adds support for ssl-only queries and notices. (m_sslmodes)
| * | Renamed ssl_umode to secure_queriesGravatar Shawn Smith2012-03-301-2/+2
| | |
| * | Added ssl query/notice support to m_sslmodesGravatar Shawn Smith2012-03-291-4/+69
| |/
* / fix compilation on OS XGravatar Robin Burchell2012-03-301-1/+1
|/ | | | OS X doesn't have (or require) libcrypt
* Fixed infinite loop cauesd by invalid dns packetsGravatar Adam2012-03-291-2/+9
|
* Fixed out of bounds memory access from malformed DNS queries that have an ↵Gravatar Adam2012-03-291-1/+1
| | | | invalid length label. Introduced in a6a07de0daa353bcd29056a4535a9c4784c113c8.
* m_ssl_gnutls: use recommended DH bit sizes instead of user-specified valueGravatar Daniel De Graaf2012-03-221-5/+3
|
* m_ssl_gnutls: remove DH parameter generationGravatar Daniel De Graaf2012-03-221-22/+2
| | | | | | While the gnutls documentation recommends that DH parameters be regenerated, this does not actually improve security and may freeze the ircd for a significant amount of time (50s in some reports). Remove it.
* m_ident: register service to actually make module workGravatar Xaquseg2012-03-221-0/+1
|
* Typo fixes.Gravatar Peter Powell2012-03-221-1/+1
|
* dns: cleanup ResultIsReady() prototypeGravatar William Pitcock2012-03-211-6/+6
|
* dns: more hardeningGravatar William Pitcock2012-03-211-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-211-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-211-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-3/+4
|
* Fix stats letter for shunsGravatar Jackmcbarn2011-08-271-2/+1
|
* Fix garbage collect of dropped accountsGravatar Jackmcbarn2011-08-221-1/+1
|
* 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-11/+8
|
* Inspircd 2.1 beta 2 v2.1b2Gravatar Daniel De Graaf2011-07-171-1/+1
|
* Only write pidfile if we have parsed a valid configurationGravatar Daniel De Graaf2011-07-171-23/+27
|
* Resolve /STATS S conflict between SVSHOLD and SHUNGravatar Daniel De Graaf2011-06-231-1/+1
|
* Always use local SID as the source for PONG repliesGravatar Daniel De Graaf2011-06-231-1/+1
|
* Make the select() socketengine suck significantly lessGravatar Adam2011-06-121-52/+67
|
* Track UUIDs instead of pointers, and change how cleanup is doneGravatar Jackmcbarn2011-06-061-25/+28
|
* Initialize quitting_sendqGravatar Jackmcbarn2011-06-051-1/+1
|
* Account name is irc::stringGravatar Jackmcbarn2011-06-051-1/+1
|
* Change m_gecosban to extban g and m_account_modes to extban rGravatar Jackmcbarn2011-06-052-6/+7
|
* Fix recursion of QuitUser in SendQ quitsGravatar Jackmcbarn2011-05-232-7/+18
|
* Change InspIRCd::Run() to return voidGravatar Jackmcbarn2011-05-051-1/+1
|
* Update copyright notices to 2011Gravatar Jackmcbarn2011-05-04344-345/+345
|
* Add static keywordGravatar Jackmcbarn2011-05-032-3/+3
|
* Use empty() instead of size() == 0Gravatar Jackmcbarn2011-05-031-1/+1
|
* Remove return statement that is never hitGravatar Jackmcbarn2011-05-031-2/+0
|
* Remove an incorrect declaration and move OneOfMatches to CommandOperGravatar Jackmcbarn2011-05-031-16/+14
|
* Fix permission checkGravatar Jackmcbarn2011-05-031-1/+1
|
* Don't automatically give registrants implicit permissionsGravatar Jackmcbarn2011-04-211-0/+3
|
* Add a flag for implicit permissionsGravatar Jackmcbarn2011-04-216-7/+7
|
* Fix IPv6 test on WindowsGravatar Adam2011-04-191-1/+1
|
* Remove unneeded "-1" offsets from 005 lineGravatar Daniel De Graaf2011-04-181-3/+3
|
* Fix bug 126, thanks to SebGravatar DjSlash2011-04-181-1/+1
|