| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add flags to convert text to IRC lowercase and to convert spaces to underscores | Jackmcbarn | 2010-10-20 | 3 | -20/+27 |
| * | Add support for case insensitive regular expressions | Jackmcbarn | 2010-10-20 | 3 | -12/+12 |
| * | Fix crash on sqlite rehash/unload if a database fails to open | Daniel De Graaf | 2010-10-10 | 1 | -2/+5 |
| * | Improve GnuTLS socket error messages | Daniel De Graaf | 2010-10-02 | 1 | -2/+24 |
| * | Fix multiple-insert of newly created channels | Daniel De Graaf | 2010-10-02 | 1 | -0/+1 |
| * | Add ExtensibleType argument to ExtensionItem to identify item types | Daniel De Graaf | 2010-09-22 | 2 | -2/+2 |
| * | A zero return from gnutls_record_send is not an error | Daniel De Graaf | 2010-09-19 | 1 | -7/+1 |
| * | Add C++ wrappers to more GnuTLS objects; remove the need to specify certcount | Daniel De Graaf | 2010-09-12 | 1 | -48/+153 |
| * | Move gnutls_dh_params into its own refcounted container object | Daniel De Graaf | 2010-09-11 | 1 | -19/+41 |
| * | Fix namespace conflict in SQL modules causing crash in PURE_STATIC | Daniel De Graaf | 2010-09-10 | 3 | -0/+18 |
| * | Enable gnutls_only on pre-2.2 GnuTLS | Daniel De Graaf | 2010-09-06 | 1 | -2/+2 |
| * | Fix compilation on old (pre-2.2) versions of GnuTLS | Daniel De Graaf | 2010-09-06 | 1 | -0/+12 |
| * | Enable COMP-DEFLATE by default so that SSL connections are compressed | Daniel De Graaf | 2010-09-06 | 1 | -1/+1 |
| * | Allow enabling private GnuTLS extensions such as LZO compression | Daniel De Graaf | 2010-09-06 | 1 | -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"
| Daniel De Graaf | 2010-09-06 | 1 | -2/+10 |
| * | Avoid future bugs with Attach | Jackmcbarn | 2010-08-28 | 5 | -5/+5 |
| * | Add FormatSubstitute utility class | Daniel De Graaf | 2010-08-27 | 3 | -71/+57 |
| * | Add thread terminator support | Daniel De Graaf | 2010-08-25 | 1 | -2/+8 |
| * | Use mysql_real_escape_string by postponing substitution until query time | Daniel De Graaf | 2010-08-24 | 1 | -53/+98 |
| * | Support module unloading while jobs are enqueued | Daniel De Graaf | 2010-08-24 | 1 | -22/+27 |
| * | Replace thread engine with job engine | Daniel De Graaf | 2010-08-24 | 1 | -152/+50 |
| * | Clarify GnuTLS error messages on files not found | Daniel De Graaf | 2010-08-23 | 1 | -1/+12 |
| * | Clarify the configuration tag function names | Daniel De Graaf | 2010-08-22 | 5 | -8/+8 |
| * | Replace remaining Request users with dynamic_reference | Daniel De Graaf | 2010-08-21 | 3 | -880/+21 |
| * | Remove ConfigReader (deprecated interface) | Daniel De Graaf | 2010-08-21 | 4 | -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.
| Daniel De Graaf | 2010-08-21 | 9 | -41/+20 |
| * | Add support for setting accountname to m_sqlauth and m_ldapauth | Daniel De Graaf | 2010-08-19 | 1 | -6/+12 |
| * | Fix up some errors from the init() conversion | Daniel De Graaf | 2010-08-05 | 1 | -1/+5 |
| * | Force modules to use init() to register hooks | Daniel De Graaf | 2010-08-05 | 1 | -1/+1 |
| * | Fix $md5pass and $sha256pass in SQL queries | Daniel De Graaf | 2010-08-04 | 3 | -3/+3 |
| * | Change regex modules to use a prioritized init() | Daniel De Graaf | 2010-08-03 | 3 | -3/+30 |
| * | Get rid of more useless assign() invocations | Daniel De Graaf | 2010-08-03 | 1 | -1/+1 |
| * | Fix m_ldapoper using incorrect module name | Daniel De Graaf | 2010-08-03 | 1 | -4/+4 |
| * | Fix MySQL crash on module unload with empty query queue | danieldg | 2010-08-03 | 1 | -1/+3 |
| * | Fix uninit pointer on MySQL initial connection | Daniel De Graaf | 2010-08-03 | 1 | -5/+3 |
| * | Handle database not present a bit better, add missing MySQL rehash on init | Daniel De Graaf | 2010-08-03 | 1 | -0/+2 |
| * | SQL API v3 | danieldg | 2010-08-03 | 3 | -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
| danieldg | 2010-08-03 | 4 | -15/+32 |
| * | Fix some more incorrect socket use | danieldg | 2010-08-03 | 1 | -11/+1 |
| * | Don't run gnutls_dh_params_generate so often | Daniel De Graaf | 2010-08-03 | 1 | -6/+7 |
| * | Fix password comparison and metadata updates | Daniel De Graaf | 2010-08-03 | 1 | -1/+1 |
| * | Add m_hash_posix to allow reading POSIX passwords ($1$salt$md5, like /etc/sha... | Daniel De Graaf | 2010-08-03 | 1 | -0/+49 |
| * | GnuTLS cleanup | Daniel De Graaf | 2010-08-03 | 1 | -35/+14 |
| * | New I/O hook API•••This removes some pointless Module:: entries, uses the ServiceProvider
lookup API for bind tags, and allows GnuTLS to use custom certificates
per bind or link block using:
<bind ssl="gnutls" ssl_cert="signed" ...>
<ssl_cert name="signed" certfile="my.cert.pem" keyfile="my.key.pem">
| Daniel De Graaf | 2010-08-03 | 3 | -1160/+716 |
| * | Remove useless return value from OnUserRegister | Daniel De Graaf | 2010-08-03 | 1 | -4/+2 |
| * | Compile fix for m_ldapauth•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12495 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2010-02-18 | 1 | -3/+4 |
| * | Support multiple certificates in GnuTLS certificate chain•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12491 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2010-02-18 | 1 | -7/+16 |
| * | Check for <user>:<password> for ldap auth in /PASS password if ident/nickname...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12486 e03df62e-2008-0410-955e-edbf42e46eb7
| w00t | 2010-02-17 | 1 | -9/+27 |
| * | Allow STARTTLS to be disabled via <gnutls starttls="no">•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12485 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2010-02-17 | 1 | -2/+13 |
| * | Hide SSL= line of 005 if <gnutls:showports>/<openssl:showports> is false•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12484 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2010-02-17 | 2 | -24/+32 |