summaryrefslogtreecommitdiff
path: root/src/modules
Commit message (Collapse)AuthorAgeFilesLines
* Use userrec::MakeHost not userrec::GetFullRealHost, one has the nick on and ↵Gravatar brain2007-08-211-1/+1
| | | | | | we dont want it git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7792 e03df62e-2008-0410-955e-edbf42e46eb7
* Implement feature in bug #395 reported by stealth, and tidy up a bitGravatar brain2007-08-211-4/+5
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7790 e03df62e-2008-0410-955e-edbf42e46eb7
* Introducing major crashy bugs to annoy Stskeeps... just kidding, backport of ↵Gravatar brain2007-08-211-1/+2
| | | | | | stability fix in r7787 git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7788 e03df62e-2008-0410-955e-edbf42e46eb7
* Backport, phew, glad this one applied cleanly.Gravatar brain2007-08-203-3/+4
| | | | | | | | | | The only possibility for the issue sts found is that a socket is deleted but also ends up in the socket cull list somehow. To ensure that the socket does not get deleted, remove the delete and replace with an explicit call to insert into the socket cull list. We were grappling with these issues in early 1.1 with the userrec cull list, too. NOTE for later 1.2's consider making CullList a base class which we can derive from to delete lists of other items than userrecs. git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7776 e03df62e-2008-0410-955e-edbf42e46eb7
* backport of fix for bug #382. When colliding a nick, we didnt have : before ↵Gravatar brain2007-08-201-2/+2
| | | | | | | | | | | the kill reasons for the serverkill. Because of a recentish refactor of server to server kills, when killing the user, the kill handler checks for params != 2 and returns if this is true Because 'nick collision' is two words, long, it ignores the KILL and risks a desync (basically a race condition). Couldnt duplicate myself, but this *SHOULD* fix. git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7773 e03df62e-2008-0410-955e-edbf42e46eb7
* Backport fix for bug #389, m_nicklock desyncGravatar brain2007-08-201-1/+0
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7771 e03df62e-2008-0410-955e-edbf42e46eb7
* Backport <hostchange:ports> from bug #363 (feature)Gravatar brain2007-08-191-3/+21
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7763 e03df62e-2008-0410-955e-edbf42e46eb7
* backport loading warning suggested by BrickerGravatar brain2007-08-191-0/+3
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7752 e03df62e-2008-0410-955e-edbf42e46eb7
* Also deleted json.h from 1.1Gravatar special2007-08-191-544/+0
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7745 e03df62e-2008-0410-955e-edbf42e46eb7
* Blocked r7743 and deleted m_rpc_json from 1.1, since it isn't completed yetGravatar special2007-08-191-2096/+0
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7744 e03df62e-2008-0410-955e-edbf42e46eb7
* bp: Fixed a crash within the timeout for m_httpd socketsGravatar special2007-08-191-3/+4
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7741 e03df62e-2008-0410-955e-edbf42e46eb7
* bp: Added the <cloak:ipalways> and <cloak:lowercase> options. Patch by nenolodGravatar special2007-08-181-36/+68
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7738 e03df62e-2008-0410-955e-edbf42e46eb7
* * Fixed bug in m_banredirect where removing a ban on a channel with maxbans ↵Gravatar burlex2007-08-171-1/+1
| | | | | | | | set would result in a "ban list full" message. * Fixed win32 compiling (forgot to backport the #pragma linker directive) git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7734 e03df62e-2008-0410-955e-edbf42e46eb7
* bp: Fixed bug #390 (broken m_chanprotect noservices)Gravatar special2007-08-161-17/+20
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7731 e03df62e-2008-0410-955e-edbf42e46eb7
* Remove a whole load of #ifdef as we can now use gettimeofday.Gravatar brain2007-08-152-9/+0
| | | | | | | If we add a wrapper for getrusage, then we can remove a ton more git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7726 e03df62e-2008-0410-955e-edbf42e46eb7
* Merge 7719, 7720Gravatar brain2007-08-152-14/+19
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7721 e03df62e-2008-0410-955e-edbf42e46eb7
* bp 7717: Fix new millisec /map to compile on windows, by ifndef gettimeofday ↵Gravatar peavey2007-08-132-0/+11
| | | | | | out reverting back to seconds for latency. git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7718 e03df62e-2008-0410-955e-edbf42e46eb7
* bp typo fixGravatar brain2007-08-111-1/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7703 e03df62e-2008-0410-955e-edbf42e46eb7
* Backport *possible* fix for bug #374, note i am working BLIND here without a ↵Gravatar brain2007-08-101-2/+6
| | | | | | proper backtrace! This is *guesswork* but the fix makes sense. diff to see. git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7701 e03df62e-2008-0410-955e-edbf42e46eb7
* Backport display glitch fix found by djGrrr, fixed by w00tGravatar brain2007-08-091-1/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7692 e03df62e-2008-0410-955e-edbf42e46eb7
* Fix for bug #379 reported by stealth. Trigger watch signon/signoff on +Q and -QGravatar brain2007-08-091-0/+11
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7690 e03df62e-2008-0410-955e-edbf42e46eb7
* Feature request from djGrr, allow changing of server to server ping ↵Gravatar brain2007-08-075-5/+13
| | | | | | frequency: Backport to 1.1 for deployment on certain nets git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7687 e03df62e-2008-0410-955e-edbf42e46eb7
* Merge in missing part of gnutls fixGravatar brain2007-08-061-1/+0
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7683 e03df62e-2008-0410-955e-edbf42e46eb7
* Backport r7678Gravatar w00t2007-08-061-1/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7679 e03df62e-2008-0410-955e-edbf42e46eb7
* Backport r7676Gravatar w00t2007-08-061-1/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7677 e03df62e-2008-0410-955e-edbf42e46eb7
* Backport of sorts for r7665 - adding m_nickflood. I do this only because ↵Gravatar w00t2007-08-051-0/+284
| | | | | | it's an entirely new module, therefore it won't break anyone's setup if it explodes, and because 1.2 is a long way away :P git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7671 e03df62e-2008-0410-955e-edbf42e46eb7
* Backport as fix, as old way was somewhat useless:Gravatar brain2007-08-053-3/+14
| | | | | | | Change latency figures in /map to milliseconds, much more useful for lag measurement than seconds git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7668 e03df62e-2008-0410-955e-edbf42e46eb7
* Merge flushbuffer openssl fix from trunk manually (without debug), and set ↵Gravatar peavey2007-08-051-2/+13
| | | | | | svnmerge props for merge -r7661-7663 also by hand. git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7664 e03df62e-2008-0410-955e-edbf42e46eb7
* Merge buffering and notification fixes from trunk. Lessons learned from ↵Gravatar brain2007-08-051-2/+20
| | | | | | chatspike. git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7660 e03df62e-2008-0410-955e-edbf42e46eb7
* Merge in fix for hanging client socket from trunkGravatar brain2007-08-051-3/+0
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7656 e03df62e-2008-0410-955e-edbf42e46eb7
* Merge OpenSSL fix from trunk (r7648-7649)Gravatar peavey2007-08-041-24/+0
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7652 e03df62e-2008-0410-955e-edbf42e46eb7
* more fixes for openssl buffering (none of this affected the superior gnutls)Gravatar brain2007-08-031-0/+2
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7647 e03df62e-2008-0410-955e-edbf42e46eb7
* Merge in change from trunkGravatar brain2007-08-031-4/+4
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7645 e03df62e-2008-0410-955e-edbf42e46eb7
* Backport 7641 manually via patch file. I'm off for pleasures of the flesh, ↵Gravatar w00t2007-08-0330-32/+34
| | | | | | cyall. :P git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7642 e03df62e-2008-0410-955e-edbf42e46eb7
* Manual backport of r7637 - svnmerge is still being a prickGravatar w00t2007-08-031-1/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7638 e03df62e-2008-0410-955e-edbf42e46eb7
* Dont show hidden channelsGravatar brain2007-07-301-1/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7626 e03df62e-2008-0410-955e-edbf42e46eb7
* Fix some op/halfop etc countsGravatar brain2007-07-301-1/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7624 e03df62e-2008-0410-955e-edbf42e46eb7
* Set changed to true on loadGravatar brain2007-07-301-1/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7622 e03df62e-2008-0410-955e-edbf42e46eb7
* Fix broken m_httpd (not receiving callbacks) from trunk commitGravatar brain2007-07-301-0/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7620 e03df62e-2008-0410-955e-edbf42e46eb7
* Merge in m_closeGravatar brain2007-07-291-0/+81
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7609 e03df62e-2008-0410-955e-edbf42e46eb7
* Merge r7602 from trunkGravatar peavey2007-07-281-1/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7603 e03df62e-2008-0410-955e-edbf42e46eb7
* Merge from trunk, eliminate warning when building with anal flagsGravatar brain2007-07-261-8/+15
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7584 e03df62e-2008-0410-955e-edbf42e46eb7
* Merge detail fix from trunkGravatar brain2007-07-261-1/+13
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7582 e03df62e-2008-0410-955e-edbf42e46eb7
* Merge 7533-7535 from trunkGravatar w00t2007-07-242-2/+2
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7536 e03df62e-2008-0410-955e-edbf42e46eb7
* Merge r7528-7529 from trunkGravatar peavey2007-07-234-1/+9
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7530 e03df62e-2008-0410-955e-edbf42e46eb7
* Merge r7513 from trunkGravatar w00t2007-07-231-1/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7516 e03df62e-2008-0410-955e-edbf42e46eb7
* GrrrGravatar brain2007-07-221-1/+0
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7498 e03df62e-2008-0410-955e-edbf42e46eb7
* m_testcommand deletes its command handler manually, no modules should do ↵Gravatar brain2007-07-221-1/+0
| | | | | | this. Will cause a double free git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7497 e03df62e-2008-0410-955e-edbf42e46eb7
* Add syntax.Gravatar peavey2007-07-221-0/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7496 e03df62e-2008-0410-955e-edbf42e46eb7
* Less WOOT more TAXANOMY :>Gravatar peavey2007-07-221-3/+2
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7494 e03df62e-2008-0410-955e-edbf42e46eb7