aboutsummaryrefslogtreecommitdiffstats
path: root/src/inspircd.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Basics of kqueue() implementation for socket engineGravatar brain2005-05-091-7/+128
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1348 e03df62e-2008-0410-955e-edbf42e46eb7
* Changed pool size from 64 to 1024Gravatar brain2005-05-091-1/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1347 e03df62e-2008-0410-955e-edbf42e46eb7
* Fixes to way allocations are handledGravatar brain2005-05-091-6/+12
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1346 e03df62e-2008-0410-955e-edbf42e46eb7
* Optimized userlist() (a lot faster with many users online)Gravatar brain2005-05-091-22/+22
| | | | | | | | Fixed bug where another users buffer could end up in the buffer of an exiting client before they quit git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1345 e03df62e-2008-0410-955e-edbf42e46eb7
* Optimised strlower (much faster, uses a lookup table)Gravatar brain2005-05-091-12/+16
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1344 e03df62e-2008-0410-955e-edbf42e46eb7
* Changed the final bunch of udp_* vars to server_*/tcp_*Gravatar brain2005-05-081-17/+17
| | | | | | | Fixed ircservices sending PING git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1326 e03df62e-2008-0410-955e-edbf42e46eb7
* Removal of some pointless debugGravatar brain2005-05-061-2/+0
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1314 e03df62e-2008-0410-955e-edbf42e46eb7
* Removed debug output associated with fix of bug #63Gravatar brain2005-05-061-2/+0
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1313 e03df62e-2008-0410-955e-edbf42e46eb7
* Fixed park crash bug #63 reported by ViaraiXGravatar brain2005-05-061-1/+7
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1312 e03df62e-2008-0410-955e-edbf42e46eb7
* Fixes to:Gravatar brain2005-05-051-1/+1
| | | | | | | | | +s and +p channels wouldn't be synched correctly +s and +p never show in whois even when you're a member of them +s and +p never show in list even if you're a member of them git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1308 e03df62e-2008-0410-955e-edbf42e46eb7
* Fix to a mode parsing bug (eating wrong version of parameter?)Gravatar brain2005-05-041-0/+14
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1304 e03df62e-2008-0410-955e-edbf42e46eb7
* Fixed off-by-one error in client read() (improbable due to size of buffer ↵Gravatar brain2005-05-031-1/+1
| | | | | | but fixed as a risk anyway) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1301 e03df62e-2008-0410-955e-edbf42e46eb7
* Fixed 'no such server' when server is foundGravatar brain2005-05-031-1/+4
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1295 e03df62e-2008-0410-955e-edbf42e46eb7
* Reordered some on-connect network stuff to stop services being so confusedGravatar brain2005-05-031-3/+7
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1293 e03df62e-2008-0410-955e-edbf42e46eb7
* Fixed to always write log to bin directoryGravatar brain2005-05-031-5/+33
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1291 e03df62e-2008-0410-955e-edbf42e46eb7
* Extra safety checks to avoid trying to write() remote usersGravatar brain2005-05-031-5/+5
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1286 e03df62e-2008-0410-955e-edbf42e46eb7
* A few cpu usage tweaksGravatar brain2005-05-031-1/+4
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1285 e03df62e-2008-0410-955e-edbf42e46eb7
* Optimized WriteCommon and WriteCommonExceptGravatar brain2005-05-031-25/+12
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1284 e03df62e-2008-0410-955e-edbf42e46eb7
* Updated /stats T to include motdsGravatar brain2005-05-021-1/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1281 e03df62e-2008-0410-955e-edbf42e46eb7
* Added /stats TGravatar brain2005-05-021-0/+14
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1280 e03df62e-2008-0410-955e-edbf42e46eb7
* Fixed weird line wrapping bug with extremely long linesGravatar brain2005-05-021-9/+9
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1277 e03df62e-2008-0410-955e-edbf42e46eb7
* Sanity checks for fd_ref in addclientGravatar brain2005-05-011-1/+30
| | | | | | | Fixed 'server ignores me forever if i throttle the server with connections' bug git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1272 e03df62e-2008-0410-955e-edbf42e46eb7
* Added and tested fd crossreference table - improves speed a lot, and fixes ↵Gravatar brain2005-05-011-63/+94
| | | | | | one of the /STATS chars which has been broken a while git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1271 e03df62e-2008-0410-955e-edbf42e46eb7
* Tried a new way of doing remote versionsGravatar brain2005-04-301-5/+36
| | | | | | | | commented some users and connections code added remote @* notice git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1269 e03df62e-2008-0410-955e-edbf42e46eb7
* Changed how remote version works a bitGravatar brain2005-04-301-2/+17
| | | | | | | Commented some of connection.cpp git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1268 e03df62e-2008-0410-955e-edbf42e46eb7
* Fixed some flood checkingGravatar brain2005-04-291-3/+59
| | | | | | | added noticeall git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1262 e03df62e-2008-0410-955e-edbf42e46eb7
* Added some pretty mean anti-flood featuresGravatar brain2005-04-291-1/+10
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1261 e03df62e-2008-0410-955e-edbf42e46eb7
* A few anti-flood featuresGravatar brain2005-04-291-0/+12
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1260 e03df62e-2008-0410-955e-edbf42e46eb7
* Tidied up zline stuffGravatar brain2005-04-291-0/+2
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1259 e03df62e-2008-0410-955e-edbf42e46eb7
* Made xline notices neater when notifying of unknown connectionsGravatar brain2005-04-291-5/+12
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1258 e03df62e-2008-0410-955e-edbf42e46eb7
* Added code to detect and set local zlines for "flood from unregistered ↵Gravatar brain2005-04-291-9/+17
| | | | | | connection" git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1257 e03df62e-2008-0410-955e-edbf42e46eb7
* Updated buffering, faster and more sensible (old code sucks)Gravatar brain2005-04-291-16/+11
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1256 e03df62e-2008-0410-955e-edbf42e46eb7
* Fixed WriteCommon not writing to the source user when not on any channelsGravatar brain2005-04-281-0/+6
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1252 e03df62e-2008-0410-955e-edbf42e46eb7
* Remote versioning fixesGravatar brain2005-04-281-1/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1245 e03df62e-2008-0410-955e-edbf42e46eb7
* Added remote versioningGravatar brain2005-04-281-10/+43
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1244 e03df62e-2008-0410-955e-edbf42e46eb7
* Blah (ive committed so many times to fix this bug its not worth commenting here)Gravatar brain2005-04-281-1/+2
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1232 e03df62e-2008-0410-955e-edbf42e46eb7
* Changed point where routing table is sent so that services worksGravatar brain2005-04-281-16/+17
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1230 e03df62e-2008-0410-955e-edbf42e46eb7
* Fixes to WriteCommon and WriteCommonExceptGravatar brain2005-04-281-5/+34
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1228 e03df62e-2008-0410-955e-edbf42e46eb7
* Double nickchangeGravatar brain2005-04-271-1/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1226 e03df62e-2008-0410-955e-edbf42e46eb7
* Double nickchange issueGravatar brain2005-04-271-0/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1225 e03df62e-2008-0410-955e-edbf42e46eb7
* Fixed stuffGravatar brain2005-04-271-0/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1224 e03df62e-2008-0410-955e-edbf42e46eb7
* Linking fixesGravatar brain2005-04-271-28/+12
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1223 e03df62e-2008-0410-955e-edbf42e46eb7
* No suck nickname?! why didn't anyone see this?!Gravatar brain2005-04-271-2/+2
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1215 e03df62e-2008-0410-955e-edbf42e46eb7
* Optimized stuffGravatar brain2005-04-271-12/+17
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1212 e03df62e-2008-0410-955e-edbf42e46eb7
* Added explicit oper tracking in a vector of userrec* pointers, optimizes ↵Gravatar brain2005-04-271-104/+60
| | | | | | sending out oper notices git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1209 e03df62e-2008-0410-955e-edbf42e46eb7
* Updated startup colour schemeGravatar brain2005-04-261-1/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1205 e03df62e-2008-0410-955e-edbf42e46eb7
* Changed some %d to %luGravatar brain2005-04-261-44/+43
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1203 e03df62e-2008-0410-955e-edbf42e46eb7
* strlen tidyup #2Gravatar brain2005-04-261-1/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1202 e03df62e-2008-0410-955e-edbf42e46eb7
* Strlen tidyup (based on results of gprof output)Gravatar brain2005-04-261-8/+9
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1201 e03df62e-2008-0410-955e-edbf42e46eb7
* Fixed problem where nobody could message a channel they werent a member of ↵Gravatar brain2005-04-261-81/+34
| | | | | | (including u-lines, eek) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1200 e03df62e-2008-0410-955e-edbf42e46eb7