summaryrefslogtreecommitdiff
path: root/src/networking.c
Commit message (Expand)AuthorAgeFilesLines
* Added a function to get slave name for logs.antirez2014-10-271-6/+2
* Fix typos in commentsGregory Petrosyan2014-09-291-3/+3
* Remove warnings and improve integer sign correctness.antirez2014-08-131-1/+1
* PubSub clients refactoring and new PUBSUB flag.antirez2014-07-161-1/+1
* No more trailing spaces in Redis source code.antirez2014-06-261-2/+2
* CLIENT KILL: don't kill the master as a normal client.antirez2014-06-261-1/+3
* Old form of CLIENT KILL should still allow suicide.antirez2014-06-241-0/+1
* CLIENT KILL API modified.antirez2014-06-161-21/+39
* CLIENT KILL: fix closing link of the current client.antirez2014-06-161-1/+6
* New features for CLIENT KILL.antirez2014-06-161-13/+58
* Assign an unique non-repeating ID to each new client.antirez2014-06-161-1/+3
* Client types generalized.antirez2014-06-161-17/+18
* CLIENT LIST speedup via peerid caching + smart allocation.antirez2014-04-281-19/+31
* Use sdscatfmt() in getClientInfoString() to make it faster.antirez2014-04-281-9/+9
* Process events with processEventsWhileBlocked() when blocked.antirez2014-04-241-0/+23
* Accept multiple clients per iteration.antirez2014-04-241-15/+23
* AE_ERR -> ANET_ERR in acceptUnixHandler().antirez2014-04-241-1/+1
* Missing return REDIS_ERR added to processMultibulkBuffer().antirez2014-04-231-1/+3
* Fix return value check for anetTcpAcceptMatt Stancliff2014-03-061-1/+1
* CLIENT PAUSE and related API implemented.antirez2014-02-041-0/+56
* Don't log MONITOR clients as disconnecting slaves.antirez2014-01-251-1/+1
* Cluster: support to read from slave nodes.antirez2014-01-141-0/+1
* Log disconnection with slave only when ip:port is available.antirez2013-12-251-4/+4
* Slave disconnection is an event worth logging.antirez2013-12-221-0/+10
* Log when a slave lose the connection with its master.antirez2013-12-211-9/+10
* Merge pull request #1451 from yossigo/unbalanced-quotes-fixSalvatore Sanfilippo2013-12-111-0/+5
|\
| * Return proper error on requests with an unbalanced number of quotes.Yossi Gottlieb2013-12-081-0/+5
* | Slaves heartbeat while loading RDB files.antirez2013-12-091-0/+6
* | Handle inline requested terminated with just \n.antirez2013-12-091-1/+8
|/
* Fixed grammar: before H the article is a, not an.antirez2013-12-051-1/+1
* WAIT command: synchronous replication for Redis.antirez2013-12-041-0/+1
* BLPOP blocking code refactored to be generic & reusable.antirez2013-12-031-3/+5
* Removed old comments and dead code from freeClient().antirez2013-12-031-12/+14
* Grammar fix in freeClient().antirez2013-12-031-1/+1
* Replication: fix master timeout.antirez2013-10-041-1/+7
* Fix an hypothetical issue in processMultibulkBuffer().antirez2013-08-271-1/+5
* Don't over-allocate the sds string for large bulk requests.antirez2013-08-271-2/+2
* Use precomptued objects for bulk and mbulk prefixes.antirez2013-08-121-2/+9
* Replication: better way to send a preamble before RDB payload.antirez2013-08-121-2/+4
* sdsrange() does not need to return a value.antirez2013-07-241-5/+5
* Inline protocol improved to accept quoted strings.antirez2013-07-241-2/+4
* getStringObjectSdsUsedMemory() function added.antirez2013-07-231-19/+17
* Fix setDeferredMultiBulkLength() c->reply_bytes handling with EMBSTRantirez2013-07-221-1/+4
* Fixed a possible bug in client->reply_bytes computation.antirez2013-07-221-0/+1
* Introduction of a new string encoding: EMBSTRantirez2013-07-221-9/+21
* addReplyDouble(): format infinite in a libc agnostic way.antirez2013-07-171-3/+10
* getClientPeerId() refactored into two functions.antirez2013-07-091-4/+12
* getClientPeerId() now reports errors.antirez2013-07-091-13/+13
* getClientPeerID introduced.antirez2013-07-091-7/+34
* All IP string repr buffers are now REDIS_IP_STR_LEN bytes.antirez2013-07-091-3/+2