summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* 1.2.0rc2+PepperSteik•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11199 e03df62e-2008-0410-955e-edbf42e46eb7 v1.2.0rc2Gravatar w00t2009-03-101-1/+1
* Add doxygen configuration, in case someone wants to generate doxygen docs.•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11198 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar w00t2009-03-101-0/+1417
* Apparantly someone can't figure out which index to check. Fixes CHGHOST with ...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11196 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar w00t2009-03-101-1/+1
* Push password comparison logic into ComparePass, fixes authentication bug not...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11195 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-102-13/+7
* Quiet bursts for uplinks, suggested by HiroP, thanks!•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11194 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2009-03-104-9/+16
* Flush snotices instantly on send (disable queueing) - in it's present form, i...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11193 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar w00t2009-03-091-0/+2
* Add Taros to regular contributors list, too.•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11192 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar w00t2009-03-091-1/+1
* Fix bug #751 (wallops are not being processed remotely), reported by Taros.•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11191 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar w00t2009-03-091-3/+0
* Fix bug #764 (/stats i outputs numerics with uppercase I), reported by KingTa...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11190 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar w00t2009-03-091-1/+1
* Rewrite BufferedSocket::BindAddr to actually make sense, and not infinite loo...•••Seems to work okay on an invalid bind and nonexistant bind.. Fixes bug #754, reported by HiroP and Indoril. Fix FD leak in some circumstances: if bind fails hard (requested address couldn't be bound), Close() the socket. Also fixes a deficiency of the previous commit in that if one address failed to bind, the FD would be invalidated. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11189 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar w00t2009-03-092-61/+90
* An FJOIN is not bursting unless the source server is bursting•••Fixes bug #755 git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11188 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-091-1/+1
* Correctly fill LastParseParams on servermode. Fixes bug 763, thanks Ankit•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11187 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-091-1/+1
* m_override: fix messages on multi-mode changes•••This fixes bug 664 git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11186 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-082-105/+95
* Fix +k for real•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11185 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-071-8/+20
* Let's try that +k fix again, this time with more testing•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11184 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-071-7/+6
* Remove some unneeded debug messages on the common case of FJOIN•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11183 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-071-3/+3
* Fix r11178 not allowing keys to be unset•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11182 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-071-28/+22
* Include explicit parameter list in ProtocolInterface::SendMode•••Also leave the strings split into deque, there's no need to pack it into a string just to unpack it during the translate. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11181 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-0715-54/+53
* Construct explicit parameter type list for MODE parameters•••Previously, we used TR_SPACENICKLIST on the parameters. This worked only because usually, if anything in the list parsed as a nick, then it was a nick. However, some modes like +k and +g allow free-form text, which could also resolve as a nick. Add extra parameters to allow modes to specify their TranslateType, defaulting to TR_TEXT. This fixes bug #757, found by Taros git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11180 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-0615-66/+92
* Send SVSNICKs during nick collision to prevent servers that do not fully impl...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11179 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-063-24/+35
* Drop channel keys if they are identical to the already-set key (fix for bug #...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11178 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar w00t2009-03-061-0/+5
* Fix number of events in noctcp, so 'C' is shown in EXTBAN= 005 token, fixes b...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11177 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar w00t2009-03-061-1/+1
* Fix +g notices going to remote users. Fixes bug #749, reported by Taros.•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11176 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar w00t2009-03-061-1/+4
* Convert helpop to use a ModeHandler base rather than a SimpleUserModeHandler,...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11175 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar w00t2009-03-061-2/+24
* m_sakick needs to be marked VF_COMMON•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11174 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-051-1/+1
* Final configuration comment update [jdhore]•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11173 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-053-36/+32
* Fix delayjoin adding an extra @ prefix mode•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11172 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-051-1/+1
* Fix crash when services (or a misbehaving remote server) introduces a server ...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11171 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-054-54/+35
* Add missing .example to modules.conf <include>•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11170 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-041-1/+1
* delayjoin: Remove broken check for channel ops, use ModeHandler parameter ins...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11169 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-041-26/+15
* Clean up delayjoin extension behavior•••There were a number of cases where delayjoin left stale metadata attached to a user, which wastes memory. Also, the quit message of a users in a +D channel could not be seen because of the emulated PART. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11168 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-041-31/+40
* Grammar/whitespace fixup•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11167 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-041-44/+44
* More documentation to example configs [jdhore]•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11166 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-042-6/+29
* Add more documentation to example configs [jdhore]•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11165 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-043-4/+31
* Restrict some /WHO options to opers•••There is no reason to be able to query the umodes of other users or the port they connected on; this can contain private information. If HideWhoisServer is on, also restrict local/far query. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11164 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-031-4/+8
* Revert "Don't apply channel modes received in an non-burst, non-creation FJOI...•••This keeps the protocol closer to TS6 behavior. The mode sync in the FJOIN is used to resync channel modes after a desync caused by modes crossing on the wire. In the future, an alternate join command will be used to prevent MODExJOIN desync without rejecting modes from an FJOIN. This reverts commit 4820e6bb9578e53ea1553070108599349d0ffbcb. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11163 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-021-19/+5
* Don't apply channel modes received in an non-burst, non-creation FJOIN, becau...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11162 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-021-5/+19
* Fix +P channels being deleted when the final user /QUITs, thanks SnoFox•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11161 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-03-021-0/+4
* Fix a crash in m_conn_waitpong, spotted by Obi_Wan.•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11159 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar dz2009-03-011-1/+1
* Revert r10640, it blocked override notices unless they contained an op/deop/etc•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11158 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-02-271-1/+1
* Add more information to /CHECK output•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11157 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-02-271-2/+10
* [Taros] Add m_sakick.so•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11156 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-02-272-0/+130
* Fix SID-sourced KILL being displayed to killee as from SID not from server name•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11155 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-02-271-3/+6
* Fix previous module mismatch message; "remote" is misleading when sent as an ...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11154 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-02-271-8/+9
* Add VF_COMMON to all modules that provide an extban•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11153 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-02-257-7/+7
* Remove VF_COMMON from m_banredirect, it only adds an extban•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11152 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-02-251-1/+1
* Clarify CMD_LOCALONLY return values for /WATCH•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11151 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-02-251-8/+3
* m_customtitle: Don't route TITLE command, route metadata only•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11150 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-02-251-17/+10
* Allow accountname to be changed without an explicit unset•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11149 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-02-251-27/+19
* Clarify module mismatch message•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11148 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-02-241-1/+1