summaryrefslogtreecommitdiff
path: root/src/networking.c
Commit message (Expand)AuthorAgeFilesLines
* BSD license added to every C source and header file.antirez2012-11-081-0/+29
* fix typo in comments (redis.c, networking.c)Yecheng Fu2012-11-011-6/+6
* Unix socket clients properly displayed in MONITOR and CLIENT LIST.antirez2012-11-011-6/+10
* REPLCONF internal command introduced.antirez2012-06-271-0/+1
* Fix c->reply_bytes computation in setDeferredMultiBulkLength()antirez2012-06-151-0/+4
* New client info field added to CLIENT LIST output: multi, containing the leng...antirez2012-04-071-1/+2
* Fixed typo in comment: "te" -> "the".antirez2012-03-291-1/+1
* Fix for slaves chains. Force resync of slaves (simply disconnecting them) wh...antirez2012-03-291-14/+15
* use server.unixtime instead of time(NULL) where possible (cluster.c not check...Premysl Hruby2012-03-271-7/+6
* Reclaim space from the client querybuf if needed.antirez2012-03-141-0/+2
* Process async client checks like client timeouts and BLPOP timeouts increment...antirez2012-03-131-28/+0
* Added a qbuf-free field to CLIENT LIST output.antirez2012-03-131-1/+2
* Client creation time in redisClient structure. New age field in CLIENT LIST o...antirez2012-03-131-2/+3
* c->bufpos initialization moved for aesthetics.antirez2012-03-131-1/+1
* anetPeerToString() automatically populates ip/port with something that may be...antirez2012-03-071-5/+1
* Return ASAP from checkClientOutputBufferLimits() if c->reply_bytes is zero.antirez2012-02-161-1/+1
* Fixes to c->reply_bytes computation, and debug messages to closely study the ...antirez2012-02-071-8/+22
* Precision of getClientOutputBufferMemoryUsage() greatily improved, see issue ...antirez2012-02-071-8/+17
* freeMemoryIfNeeded() minor refactoringantirez2012-02-061-0/+21
* This fixes issue #327, is a very complex fix (unfortunately), details:antirez2012-02-041-3/+8
* Use less memory when emitting the protocol, by using more shared objects for ...antirez2012-02-041-0/+12
* Fixed typo in getClientLimitClassByName()antirez2012-01-251-1/+1
* lenght -> lengthantirez2012-01-241-1/+1
* after all closing a client for output buffer limit overcoming is a WARNING le...antirez2012-01-241-1/+1
* Client output buffer limits: configuration of parameters for the different cl...antirez2012-01-241-0/+16
* asyncCloseClientOnOutputBufferLimitReached() now ignores clients with REDIS_C...antirez2012-01-241-7/+5
* client buffer handling refactoring and optimizationantirez2012-01-231-23/+47
* Implementation of the internals that make possible to terminate clients overc...antirez2012-01-231-0/+96
* Introduced three client limit classes: normal, slave, pubsubantirez2012-01-171-0/+15
* Track the length of the client pending output buffers (still to transfer) in ...antirez2012-01-171-1/+28
* On crash print information about the current client (if any), command vector,...antirez2012-01-121-0/+6
* Protections against protocol desyncs, leading to infinite query buffer growin...antirez2011-12-311-6/+23
* Fixed replication when multiple slaves are attaching at the same time. The ou...antirez2011-12-301-0/+10
* server.replstate -> server.repl_stateantirez2011-12-211-1/+1
* Fixed memleak in CLIENT INFO, added simple test that will work as regression ...antirez2011-12-191-1/+5
* show initial querybuf bytes on querybuf overflow.antirez2011-11-281-2/+5
* log client protocol errors for log level >= verboseantirez2011-11-251-0/+6
* minor refactoring to networking.c adding a separated function to get a string...antirez2011-11-241-8/+16
* last executed command in CLIENT LIST output.antirez2011-11-241-3/+4
* new counter in INFO output: rejected_connections with number of dropped conne...antirez2011-11-231-0/+1
* Fixed bug in getClientInfoString() that was not rendering the N (no flags) sp...antirez2011-11-211-1/+1
* Close client connection and log the event when the client input buffer reache...antirez2011-11-211-0/+7
* show active events in client file descriptor in CLIENT LIST.antirez2011-11-211-3/+11
* added output list and buffer length, query buffer size, to CLIENT LIST output.antirez2011-11-211-2/+5
* code generating the CLIENT LIST output refactored to have a function that is ...antirez2011-11-211-28/+38
* useless double if removed.antirez2011-11-081-4/+3
* yet another #if REDIS_MBULK_BIG_ARG removed.antirez2011-11-081-2/+0
* Multi bulk optimization for creating big objects without copying data is no l...antirez2011-11-081-8/+0
* A comment moved a few lines for clarity.antirez2011-11-041-1/+1
* Added a define to set the size threshold to enable the multi bulk parsing big...antirez2011-11-041-8/+13