aboutsummaryrefslogtreecommitdiff
path: root/src/modules/extra
Commit message (Expand)AuthorAgeFilesLines
* fix compilation on OS X•••OS X doesn't have (or require) libcrypt Gravatar Robin Burchell2012-03-301-1/+1
* 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 generation•••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. Gravatar Daniel De Graaf2012-03-221-22/+2
* Update copyright notices to 2011Gravatar Jackmcbarn2011-05-0412-12/+12
* Remove inspsocket.h from inspircd.hGravatar Jackmcbarn2011-01-302-6/+6
* Remove cull_list.h from inspircd.hGravatar Jackmcbarn2011-01-291-1/+1
* Remove some gotosGravatar Jackmcbarn2010-11-271-30/+31
* Add flags to convert text to IRC lowercase and to convert spaces to underscoresGravatar Jackmcbarn2010-10-203-20/+27
* Add support for case insensitive regular expressionsGravatar Jackmcbarn2010-10-203-12/+12
* Fix crash on sqlite rehash/unload if a database fails to openGravatar Daniel De Graaf2010-10-101-2/+5
* Improve GnuTLS socket error messagesGravatar Daniel De Graaf2010-10-021-2/+24
* Fix multiple-insert of newly created channelsGravatar Daniel De Graaf2010-10-021-0/+1
* Add ExtensibleType argument to ExtensionItem to identify item typesGravatar Daniel De Graaf2010-09-222-2/+2
* A zero return from gnutls_record_send is not an errorGravatar Daniel De Graaf2010-09-191-7/+1
* Add C++ wrappers to more GnuTLS objects; remove the need to specify certcountGravatar Daniel De Graaf2010-09-121-48/+153
* Move gnutls_dh_params into its own refcounted container objectGravatar Daniel De Graaf2010-09-111-19/+41
* Fix namespace conflict in SQL modules causing crash in PURE_STATICGravatar Daniel De Graaf2010-09-103-0/+18
* Enable gnutls_only on pre-2.2 GnuTLSGravatar Daniel De Graaf2010-09-061-2/+2
* Fix compilation on old (pre-2.2) versions of GnuTLSGravatar Daniel De Graaf2010-09-061-0/+12
* Enable COMP-DEFLATE by default so that SSL connections are compressedGravatar Daniel De Graaf2010-09-061-1/+1
* Allow enabling private GnuTLS extensions such as LZO compressionGravatar Daniel De Graaf2010-09-061-1/+7
* Allow GnuTLS cipher priorities to be set•••This adds <gnutls:prio> and <ssl_cert:prio> which allows you to enable or disable ciphers, key exchange methods, macs, and compression methods in SSL connections made using these certificates. Examples from gnutls_priority_init(3): "NORMAL:!AES-128-CBC" means normal ciphers except for AES-128. "EXPORT:!VERS-TLS1.0:+COMP-DEFLATE" means that export ciphers are enabled, TLS 1.0 is disabled, and libz compression enabled. "NONE:+VERS-TLS1.0:+AES-128-CBC:+RSA:+SHA1:+COMP-NULL" Gravatar Daniel De Graaf2010-09-061-2/+10
* Avoid future bugs with AttachGravatar Jackmcbarn2010-08-285-5/+5
* Add FormatSubstitute utility classGravatar Daniel De Graaf2010-08-273-71/+57
* Add thread terminator supportGravatar Daniel De Graaf2010-08-251-2/+8
* Use mysql_real_escape_string by postponing substitution until query timeGravatar Daniel De Graaf2010-08-241-53/+98
* Support module unloading while jobs are enqueuedGravatar Daniel De Graaf2010-08-241-22/+27
* Replace thread engine with job engineGravatar Daniel De Graaf2010-08-241-152/+50
* Clarify GnuTLS error messages on files not foundGravatar Daniel De Graaf2010-08-231-1/+12
* Clarify the configuration tag function namesGravatar Daniel De Graaf2010-08-225-8/+8
* Replace remaining Request users with dynamic_referenceGravatar Daniel De Graaf2010-08-213-880/+21
* Remove ConfigReader (deprecated interface)Gravatar Daniel De Graaf2010-08-214-22/+17
* Change config reading hook for better error reporting•••This eliminates the OnRehash hook, and replaces it with ReadConfig which is called on boot, module load, and rehash. Gravatar Daniel De Graaf2010-08-219-41/+20
* Add support for setting accountname to m_sqlauth and m_ldapauthGravatar Daniel De Graaf2010-08-191-6/+12
* Fix up some errors from the init() conversionGravatar Daniel De Graaf2010-08-051-1/+5
* Force modules to use init() to register hooksGravatar Daniel De Graaf2010-08-051-1/+1
* Fix $md5pass and $sha256pass in SQL queriesGravatar Daniel De Graaf2010-08-043-3/+3
* Change regex modules to use a prioritized init()Gravatar Daniel De Graaf2010-08-033-3/+30
* Get rid of more useless assign() invocationsGravatar Daniel De Graaf2010-08-031-1/+1
* Fix m_ldapoper using incorrect module nameGravatar Daniel De Graaf2010-08-031-4/+4
* Fix MySQL crash on module unload with empty query queueGravatar danieldg2010-08-031-1/+3
* Fix uninit pointer on MySQL initial connectionGravatar Daniel De Graaf2010-08-031-5/+3
* Handle database not present a bit better, add missing MySQL rehash on initGravatar Daniel De Graaf2010-08-031-0/+2
* SQL API v3Gravatar danieldg2010-08-033-1596/+602
* Fix SQL modules not all using AddService, noticed by Morpheus•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12595 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2010-08-034-15/+32
* Fix some more incorrect socket useGravatar danieldg2010-08-031-11/+1
* Don't run gnutls_dh_params_generate so oftenGravatar Daniel De Graaf2010-08-031-6/+7
* Fix password comparison and metadata updatesGravatar Daniel De Graaf2010-08-031-1/+1
* Add m_hash_posix to allow reading POSIX passwords ($1$salt$md5, like /etc/sha...Gravatar Daniel De Graaf2010-08-031-0/+49
* GnuTLS cleanupGravatar Daniel De Graaf2010-08-031-35/+14