summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* We name this release Esrom, its a danish cheese, to congratulate peavey on ↵ v1.1.12Gravatar brain2007-08-221-1/+1
| | | | | | the new addition to the peavey household :) git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7793 e03df62e-2008-0410-955e-edbf42e46eb7
* 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
* Merge comments back into stable, so that people can still understand stable!Gravatar brain2007-08-201-0/+3
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7780 e03df62e-2008-0410-955e-edbf42e46eb7
* backport fix for bug i just introduced (oops)Gravatar brain2007-08-201-1/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7778 e03df62e-2008-0410-955e-edbf42e46eb7
* Backport, phew, glad this one applied cleanly.Gravatar brain2007-08-204-5/+6
| | | | | | | | | | 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 fix for bug #393Gravatar brain2007-08-201-2/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7766 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
* BP: Pick up a few error conditions we didnt before in the config reader, and ↵Gravatar brain2007-08-191-24/+30
| | | | | | also increment line number correctly when 'real' newline is found in a value git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7750 e03df62e-2008-0410-955e-edbf42e46eb7
* Fix some /who oddities, fixes bug #383 amongst other issues. Nothing serious.Gravatar brain2007-08-191-15/+37
| | | | | | | Ability to see users who share a common channel with you in /who *wildmask* now. git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7747 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-153-18/+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
* Fix this so it works. Gravatar brain2007-08-112-11/+35
| | | | | | | | OBVIOUS WARNING FOR THE DUMB: Dont go overwriting .so files at random to test this, you WILL crash your ircd if you do this improprerly, this is a feature of the linux shared object loader. If you want to test this, try with: rm cmd_whatever.so && echo "TESTTEST" >cmd_whatever.so, do NOT just do the echo. git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7714 e03df62e-2008-0410-955e-edbf42e46eb7
* bp: Make the return codes correct, and allow for LoadCommand without a user ↵Gravatar brain2007-08-111-1/+5
| | | | | | pointer git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7711 e03df62e-2008-0410-955e-edbf42e46eb7
* Backport: Provide error output on failure to load a core command; to console ↵Gravatar brain2007-08-111-7/+17
| | | | | | on startup, and to user on /reload git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7709 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 r7698: users (not opers) set +i would be unable to /who themselves. ↵Gravatar w00t2007-08-101-1/+1
| | | | | | Found (inadvertently) by Trblmkr. git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7699 e03df62e-2008-0410-955e-edbf42e46eb7
* Merge in dns fix for bug found by djGrrrGravatar brain2007-08-091-0/+2
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7695 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
* Backport: Check for remote and sighup rehashes here, so that it doesnt crash ↵Gravatar brain2007-08-071-1/+1
| | | | | | if there are ports that cant be bound git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7685 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 r7680: QA: Please check connect classes apply correctly before and ↵Gravatar w00t2007-08-061-8/+12
| | | | | | after DNS resolution (differing sendq, etc) git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7681 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
* Manually merge 7635 because svnmerge is being a prickGravatar w00t2007-08-031-1/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7636 e03df62e-2008-0410-955e-edbf42e46eb7
* Fixed a recently introduced bug in cmd_list that would cause secret channels ↵Gravatar special2007-07-301-1/+1
| | | | | | to be shown to all users. Highly recommended that you either hotpatch the /list command or load safelist.. git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7632 e03df62e-2008-0410-955e-edbf42e46eb7