| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | Change modelist back to 2.0 definition to remove double-dereference in BanItem | Daniel De Graaf | 2010-08-21 | 1 | -1/+1 |
| * | Remove some unused hooks•••The conversion to named modes in 2.1 broke the OnDelBan hook, so remove
m_timedbans (the only user) since it has been deprecated by m_timedmodes.
The other hooks (OnAddMode and OnNumeric) have never been used.
| Daniel De Graaf | 2010-08-21 | 1 | -24/+4 |
| * | Remove testsuite, unused code | Daniel De Graaf | 2010-08-21 | 3 | -41/+2 |
| * | Replace remaining Request users with dynamic_reference | Daniel De Graaf | 2010-08-21 | 3 | -159/+6 |
| * | Remove some duplicate code | Daniel De Graaf | 2010-08-21 | 1 | -8/+5 |
| * | Remove ConfigReader (deprecated interface) | Daniel De Graaf | 2010-08-21 | 1 | -86/+0 |
| * | 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 | 4 | -27/+51 |
| * | Change ResolveModeConflict to a simpler parameter ordering function | Daniel De Graaf | 2010-08-18 | 2 | -8/+6 |
| * | Change ModeHandler::AccessCheck to use PermissionData | Daniel De Graaf | 2010-08-18 | 3 | -8/+5 |
| * | Prevent using placement new on refcountbase, just in case | Daniel De Graaf | 2010-08-17 | 1 | -1/+2 |
| * | Include a placement operator new for classes that hide operator new | Daniel De Graaf | 2010-08-17 | 1 | -6/+9 |
| * | Fix up invite checking code and add m_inviteextban | Jackmcbarn | 2010-08-16 | 1 | -1/+3 |
| * | Fix unload of prefix modes not unsetting prefixes | Daniel De Graaf | 2010-08-15 | 2 | -2/+16 |
| * | Move a useful utility function from spanningtree to core | Daniel De Graaf | 2010-08-15 | 1 | -0/+4 |
| * | Add User::frozen to temporarily stop processing on a user•••This is useful if you want to intercept a command and do an
asynchronous lookup (an SQL query, perhaps) to determine if it should
be allowed. Without this, commands by that user could become reordered.
| Daniel De Graaf | 2010-08-15 | 1 | -0/+7 |
| * | Handle a null extensible in IS_USER/IS_CHANNEL | Daniel De Graaf | 2010-08-15 | 1 | -2/+2 |
| * | Remove GetClass(), access MyClass directly when needed | Daniel De Graaf | 2010-08-15 | 1 | -7/+0 |
| * | Add SyncTarget::SendCommand for sending preformatted lines s2s | Daniel De Graaf | 2010-08-14 | 1 | -1/+11 |
| * | Replace dynamic_cast with faster explicit type marking | Daniel De Graaf | 2010-08-14 | 4 | -5/+22 |
| * | Recreate the Channel object during a TS reset•••This ensures that all obsolete metadata, modes, and other information
from the old channel is discarded on a TS reset.
| Daniel De Graaf | 2010-08-14 | 1 | -4/+4 |
| * | Enforce SendQ collapse to soft limit in 30 seconds•••This prevents a user from blocking the recv side of their socket,
and consuming memory for the full hardsendq until they time out.
| Daniel De Graaf | 2010-08-14 | 1 | -0/+5 |
| * | Add m_opmoderated - channel mode +U | Daniel De Graaf | 2010-08-13 | 1 | -2/+2 |
| * | Remove irc::sockets::sato*, duplicates of internal irc::sockets::sockaddrs fu... | Daniel De Graaf | 2010-08-13 | 1 | -16/+4 |
| * | Remove duplicated settings now solely defined by the <connect> class | Daniel De Graaf | 2010-08-13 | 1 | -8/+0 |
| * | Remove Limits.Finalise(), doing this is completely incorrect | Daniel De Graaf | 2010-08-13 | 1 | -15/+0 |
| * | Clean up some comments | Daniel De Graaf | 2010-08-12 | 1 | -13/+7 |
| * | Drop some unused files | Daniel De Graaf | 2010-08-08 | 4 | -53/+7 |
| * | Finish header file #include untangle | Daniel De Graaf | 2010-08-08 | 27 | -900/+641 |
| * | Untagle the #include tree a bit | Daniel De Graaf | 2010-08-08 | 16 | -41/+10 |
| * | Prevent kicks of users who have a protecting low-rank prefix set | Daniel De Graaf | 2010-08-07 | 2 | -13/+9 |
| * | Change irc::modestacker output in FORMAT_PERSIST to always use long modes | Daniel De Graaf | 2010-08-06 | 1 | -0/+3 |
| * | Save umodes in addition to channel modes | Daniel De Graaf | 2010-08-05 | 1 | -1/+2 |
| * | Persist metadata and modes across module reloads | Daniel De Graaf | 2010-08-05 | 2 | -2/+25 |
| * | Allow OnParameterMissing to fill in the missing parameter | Daniel De Graaf | 2010-08-05 | 3 | -3/+4 |
| * | Call OnCheckJoin for override joins so hooks are still run | Daniel De Graaf | 2010-08-05 | 1 | -4/+0 |
| * | Add some comments, fix an uninitialized variable | Daniel De Graaf | 2010-08-04 | 1 | -2/+17 |
| * | Set target user for a join to the joining user | Daniel De Graaf | 2010-08-04 | 1 | -1/+1 |
| * | Mark channel redirects using a common extension to prevent double-redirects | Daniel De Graaf | 2010-08-04 | 1 | -1/+5 |
| * | Change to use a permission-based OnCheckJoin hook instead of OnUserPreJoin | Daniel De Graaf | 2010-08-04 | 1 | -57/+20 |
| * | Allow module init to be prioritized to allow dependency checking | Daniel De Graaf | 2010-08-03 | 1 | -1/+1 |
| * | Add log header including ircd version | Daniel De Graaf | 2010-08-03 | 1 | -0/+2 |
| * | Define comparator for irc::sockets::sockaddrs•••This only compares IP/port, which ignores IPv6 flow information and
scope ID, which aren't important in testing for equality.
| Daniel De Graaf | 2010-08-03 | 1 | -2/+5 |
| * | Get rid of more useless assign() invocations | Daniel De Graaf | 2010-08-03 | 2 | -6/+6 |
| * | Get rid of char* argument for channel name | Daniel De Graaf | 2010-08-03 | 2 | -2/+2 |
| * | Avoid needless sort of timer list on every insert/repeat | Daniel De Graaf | 2010-08-03 | 1 | -7/+2 |
| * | Drop ConfigReader::Enumerate | Daniel De Graaf | 2010-08-03 | 1 | -8/+0 |
| * | Change UserChanList to an intrusive-style linked list | Daniel De Graaf | 2010-08-03 | 4 | -10/+53 |
| * | Fix "foo" < "foobar" comparison in irc::string | Daniel De Graaf | 2010-08-03 | 1 | -1/+4 |
| * | Make irc::string faster and less wasteful•••Change irc::string from an std::basic_string typedef to a wrapper around
an std::string, to avoid unneeded copies in assign().
| Daniel De Graaf | 2010-08-03 | 1 | -50/+40 |
| * | Split up API_VERSION number•••Since we can make API changes in multiple branches at the same time,
a single sequence number is insufficient. Use two numbers to indicate
the major version and API increment.
| Daniel De Graaf | 2010-08-03 | 1 | -19/+17 |