aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
Commit message (Expand)AuthorAgeFilesLines
...
| * | m_cgiirc Call User::InvalidateCache() after changing host and dhost in OnChec...Gravatar Attila Molnar2014-05-011-0/+1
| * | m_spanningtree Advertise the availability of m_globops in CAPAB CAPABILITIESGravatar Attila Molnar2014-04-291-0/+6
| * | m_spanningtree Set the bursting flag in the FJOIN handler based on whether th...•••Previously the flag was true if our route to the source was bursting, which resulted in m_joinflood incorrectly registering netjoins when a remote server was bursting Fixes issue #839 reported by @joshtek0 Gravatar Attila Molnar2014-04-261-2/+3
| * | Change Windows libraries to be dynamically linkedGravatar Adam2014-04-135-22/+23
| * | m_ssl_openssl Avoid Applink on Windows by calling PEM_read_bio_DHparams() ins...Gravatar Attila Molnar2014-04-131-0/+11
| * | m_auditorium Handle NULL return from Channel::GetUser() in OnSendWhoLine()•••Found by Coverity, CID: 1135647 Gravatar Attila Molnar2014-04-131-1/+1
| * | m_ojoin Remove pointless FindChan() call•••Found by Coverity, CID: 1135649 Gravatar Attila Molnar2014-04-131-1/+0
| * | m_watch Be more strict when checking whether the watch list of a user is full•••After a rehash MAX_WATCH can become lower than it was before Gravatar Attila Molnar2014-04-121-1/+1
| * | Correct the syntax messages of a few modules.Gravatar Robby-2014-04-123-4/+4
* | | m_spanningtree Remove the MAP ISUPPORT token•••No other servers send this token and sending it has little to no benefit Gravatar Attila Molnar2014-07-202-6/+0
* | | Say "SSL certificate fingerprint" instead of "SSL fingerprint" everywhereGravatar Attila Molnar2014-07-196-8/+8
* | | Access local user list via new UserManager::GetLocalUsers() and make local_us...Gravatar Attila Molnar2014-07-197-9/+16
* | | Move and rename typedef LocalUserList to UserManager::LocalListGravatar Attila Molnar2014-07-196-9/+9
* | | Erase local users from UserManager::local_list in QuitUser()Gravatar Attila Molnar2014-07-191-0/+2
* | | Move typedef OperIndex to ServerConfig::OperIndexGravatar Attila Molnar2014-07-164-6/+6
* | | m_rmode Call Channel::GetUsers() instead of directly accessing Channel::userlistGravatar Attila Molnar2014-07-141-1/+2
* | | Rename UserChanList to User::ChanList, remove UCListIterGravatar Attila Molnar2014-07-146-7/+7
* | | Remove typedef UserMembIter, use Channel::MemberMap::iterator instead•••Remove the now unused UserMembList typedef too Gravatar Attila Molnar2014-07-142-4/+4
* | | Remove typedef UserMembCIter, use Channel::MemberMap::const_iterator insteadGravatar Attila Molnar2014-07-1415-19/+19
* | | Rename UserMembList to Channel::MemberMap, switch all code to use itGravatar Attila Molnar2014-07-1415-24/+24
* | | Change return type of Channel::GetUsers() to reference from pointer as it is ...Gravatar Attila Molnar2014-07-1415-42/+41
* | | Remove current time parameter of the Timer constructorGravatar Attila Molnar2014-07-103-3/+3
* | | m_spanningtree Extract logic that finds the source user for an incoming comma...Gravatar Attila Molnar2014-07-052-33/+51
* | | m_spanningtree Fix fake direction detection for commandsGravatar Attila Molnar2014-07-051-3/+3
* | | m_spanningtree Add optional expected nick TS parameter to SVSNICK•••Drop SVSNICK if the expected nick TS is present and it does not match the user's nick timestamp Gravatar Attila Molnar2014-07-051-0/+23
* | | m_spanningtree Replace manual string building of outgoing commands with CmdBu...Gravatar Attila Molnar2014-07-033-4/+4
* | | User::ChangeNick() cannot fail if the new nick is the uuid, document this and...Gravatar Attila Molnar2014-07-032-10/+2
* | | Remove now needless User::ForceNickChange()•••Change call sites to call ChangeNick() Gravatar Attila Molnar2014-07-036-8/+8
* | | Set SSL options to sane default and enfore server cipher preferences•••Original PR #856 Gravatar Julien Vehent2014-06-301-0/+3
* | | m_spanningtree Drop support for changing user modes with FMODE•••This is useless with uuids Gravatar Attila Molnar2014-06-301-21/+6
* | | m_spanningtree Translate user mode changes done via FMODE by 1202-protocol se...Gravatar Attila Molnar2014-06-301-0/+17
* | | m_spanningtree Accept legacy JOINs from 1202-protocol servers•••2.0 accepted JOIN and some pseudoservers might use it Gravatar Attila Molnar2014-06-301-0/+14
* | | Use TimingSafeCompare() to compare passwords and password hashes (non-hmac only)•••Issue #882 Gravatar Attila Molnar2014-06-282-7/+7
* | | m_spanningtree Send the cert fingerprint message to opers only after successf...Gravatar Attila Molnar2014-06-281-5/+9
* | | Check fingerprint before checking password (server linking)•••Checking the password before the fingerprint means that even without the correct cert it's possible to brute force the password or leak information about it. Checking the fingerprint means attackers must forge the cert before they can learn any information about the password. Gravatar Matthew Martin2014-06-281-15/+15
* | | Ignore safe compiler warnings in a more reliable way.Gravatar Peter Powell2014-06-284-20/+38
* | | Add parameter to InspIRCd::TimeString for UTC time formats.•••Missing doc added by @attilamolnar Gravatar Peter Powell2014-06-252-2/+2
* | | Add formatting to InspIRCd::TimeString; switch all code to use it.•••m_httpd also now uses the correct timestamp format. Windows-specific fixes by @attilamolnar, original PR #849 Gravatar Peter Powell2014-06-252-9/+2
* | | Change all occurrences of plain sort() to std::sort()Gravatar Attila Molnar2014-06-221-1/+1
* | | Change the type of the user parameter in the OnUserPreNick() hook from User t...•••No remote users were passed to this hook before. Remove needless IS_LOCAL() checks. Gravatar Attila Molnar2014-06-204-10/+4
* | | Increment serverstats::Collisions when a collision is handled, not when a mod...Gravatar Attila Molnar2014-06-201-0/+3
* | | m_spanningtree Share server description updates via SINFO descGravatar Attila Molnar2014-06-173-0/+22
* | | m_spanningtree Remove server-to-server VERSION handlerGravatar Attila Molnar2014-06-173-40/+1
* | | m_spanningtree Translate SINFO version to VERSION and vice versa for 1202 pro...Gravatar Attila Molnar2014-06-171-1/+19
* | | m_spanningtree Exchange public server version strings via SINFO instead of VE...Gravatar Attila Molnar2014-06-172-1/+5
* | | m_spanningtree Show the full version string of servers to opers•••Issue #637, suggested by @CuleX Gravatar Attila Molnar2014-06-171-1/+7
* | | m_spanningtree Send and receive full version strings via SINFOGravatar Attila Molnar2014-06-172-0/+8
* | | m_spanningtree Add a field to TreeServer for storing full version stringsGravatar Attila Molnar2014-06-172-1/+18
* | | m_spanningtree Add server-to-server SINFO command handler and builder•••Don't send SINFO to 1202 protocol servers Gravatar Attila Molnar2014-06-174-1/+55
* | | m_spanningtree Add TreeSocket::SendServerInfo() that sends all additional dat...Gravatar Attila Molnar2014-06-172-3/+11