summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2016-08-22m_spanningtree Change type of Link::Name to std::stringAttila Molnar
Switch to stdalgo::string::equalsci()
2016-08-22m_timedbans Remove TimedBan::channelAttila Molnar
2016-08-22m_cban Remove now unnecessary field CBan::displaytextAttila Molnar
2016-08-22Switch to irc::equals() from irc::string in modules that use it for ↵Attila Molnar
comparing names of IRC objects
2016-08-22Create irc::equals() from StrHashCompAttila Molnar
Make StrHashComp a wrapper around it
2016-08-22Add stdalgo::string::equalsci and use it instead of irc::string for ↵Attila Molnar
case-insensitive comparison
2016-08-22m_services_account Detect nickname case changes by using FindNickOnly()Attila Molnar
Gets rid of assign()
2016-08-22m_timedbans Remove one irc::string usageAttila Molnar
2016-08-22Replace irc::string in XLineLookup with irc::insensitive_swo mapAttila Molnar
2016-08-22Replace irc::string usage in CommandParser::LoopCall() with ↵Attila Molnar
irc::insensitive_swo set
2016-08-22Remove unused irc::tokenstream::GetToken() overload accepting an irc::stringAttila Molnar
2016-08-22Remove unused irc::hashAttila Molnar
2016-08-19Fix m_mysql warning about use of C++11 features on C++03.Peter Powell
NO_CLIENT_LONG_LONG was removed in a recent version of MySQL.
2016-08-19Fix poll using int instead of size_t which caused a warning.Peter Powell
2016-08-19Fix a build error in the poll socket engine.Peter Powell
2016-08-19Fix m_ldap not linking to liblber on UNIX systems.Peter Powell
2016-08-19m_spanningtree Put command handlers with class names that collide with core ↵Attila Molnar
commands into the SpanningTree namespace This fixes issues in static builds
2016-08-19m_monitor Add inline keyword to ↵Attila Molnar
IRCv3::Monitor::Manager::ExtItem::unserialize to fix static builds
2016-08-19m_ldap Remove unused LDAPService::last_timeout_checkAttila Molnar
2016-08-17Merge insp20Attila Molnar
2016-08-15core_hostname_lookup: find answer record of the correct type instead of ↵Adam
assuming it is first
2016-08-13Release v2.0.22Attila Molnar
2016-08-13m_censor Fix possible incorrect cast of destAttila Molnar
2016-08-13Fix more incorrect std::string::operator[] usageAttila Molnar
2016-08-11socketengine_epoll Remove unused #define EP_DELAY 5Attila Molnar
2016-08-10Initialize more User and LocalUser fields using the init listAttila Molnar
2016-08-10Update style of initializer lists in User and LocalUser constructorsAttila Molnar
2016-08-10m_ssl_mbedtls Apply dummy CA workaround for client contextAttila Molnar
2016-08-08m_ssl_* Add option to sslprofile controlling whether to request client ↵Attila Molnar
certificates
2016-08-08Add WebSocket moduleAttila Molnar
2016-08-08Add SHA1 moduleAttila Molnar
2016-08-08Keep multiple IOHookProvider references in class ListenSocketAttila Molnar
This adds the <bind:hook> config option which works together with <bind:ssl>
2016-08-08Change return type of ListenSocket::ResetIOHookProvider() to voidAttila Molnar
No code was using the return value
2016-08-08Add support for multiple IOHooks per StreamSocketAttila Molnar
2016-08-08Call StreamSocket::OnDataReady() from only one placeAttila Molnar
Call it whenever the recvq gets bigger than it was before the read
2016-08-08Extract code that reads data into a recvq from StreamSocket::DoRead() into ↵Attila Molnar
ReadToRecvQ()
2016-08-08Extract code that flushes the sendq from StreamSocket::DoWrite() into ↵Attila Molnar
FlushSendQ()
2016-08-08Add StreamSocket::GetModHook() for obtaining the IOHook belonging to a given ↵Attila Molnar
module Use it to simplify logic in all modules using or providing IOHooks
2016-08-08Pass sendq to OnStreamSocketWriteAttila Molnar
2016-08-05Fix challenge auth when using m_hash_gnutls instead of m_sha256.Peter Powell
2016-08-01Fix bursting channel bansAdam
2016-07-22Add a method which calculates the maximum mask length. (#1171)Peter Powell
2016-07-22stripcolor now strips from part messages (#1175)0x277F
2016-07-22m_ssl_openssl Verify DH params being non-NULL before setting it on the contextAttila Molnar
Fixes issue reported by @m4rkw on IRC
2016-06-27Fix a minor oversight in ERR_NONICKNAMEGIVEN.Peter Powell
2016-06-27Merge pull request #1182 from SaberUK/master+431Attila Molnar
Fix sending the wrong numeric when an empty new nick is received.
2016-06-22Fix sending the wrong numeric when an empty new nick is received.Peter Powell
2016-06-21m_ssl_gnutls, m_ssl_openssl After a read schedule another read if data ↵Attila Molnar
remains in the buffer of the SSL library
2016-06-17Don't exit on rehash if the pid file cannot be writtenAttila Molnar
2016-06-15Add mbedTLS SSL moduleAttila Molnar