summaryrefslogtreecommitdiff
path: root/src/anet.c
Commit message (Expand)AuthorAgeFilesLines
* Bind source address for cluster communicationMatt Stancliff2014-03-041-4/+28
* Add support for listen(2) backlog definitionNenad Merdanovic2014-01-311-13/+10
* anetResolveIP() added to anet.c.antirez2014-01-101-1/+18
* anetPeerToString / SockName: port can be NULL on errors too.antirez2013-12-251-2/+2
* anetTcpGenericConnect() bug introduced in 9d19977 fixed.antirez2013-12-251-3/+3
* Remove useless goto from anetTcpGenericConnect().antirez2013-12-251-3/+1
* anetTcpGenericConnect() code improved + 1 bug fix.antirez2013-12-251-8/+17
* anet.c: save some vertical space.antirez2013-07-101-10/+3
* anet.c: use SO_REUSEADDR when creating listening sockets.antirez2013-07-101-5/+3
* IPv6: bind IPv4 and IPv6 interfaces by default.antirez2013-07-091-1/+1
* Add anetTcp6Server() function.Geoff Garside2013-07-081-2/+15
* Add static anetV6Only() function.Geoff Garside2013-07-081-0/+10
* Change anetTcpGenericConnect to use AF_UNSPEC.Geoff Garside2013-07-081-1/+1
* Update anetPeerToString to handle AF_INET6 addrs.Geoff Garside2013-07-081-6/+20
* Update anetTcpAccept to handle AF_INET6 addresses.Geoff Garside2013-07-081-3/+10
* Update anetResolve to resolve AF_INET6 as well.Geoff Garside2013-07-081-4/+6
* Use inet_ntop(3) in anet. #apichangeGeoff Garside2013-07-081-6/+6
* Use getaddrinfo(3) in a anetTcpServer.Geoff Garside2013-07-081-13/+27
* Use getaddrinfo(3) in anetTcpGenericConnect.Geoff Garside2013-07-081-23/+37
* Add anetSetReuseAddr(err, fd) static function.Geoff Garside2013-07-081-3/+14
* Use getaddrinfo(3) in anetResolve. #apichangeGeoff Garside2013-07-081-12/+16
* Revert "anet.c: Allow creation of TCP listening sockets bound to N addresses."antirez2013-07-051-15/+8
* anet.c: Allow creation of TCP listening sockets bound to N addresses.antirez2013-07-041-8/+15
* Tcp keep-alive: send three probes before detectin an error.antirez2013-02-081-4/+8
* Add SO_KEEPALIVE support to anet.c.antirez2013-02-081-0/+43
* TCP_NODELAY after SYNC: changes to the implementation.antirez2013-02-051-6/+6
* Turn off TCP_NODELAY on the slave socket after SYNC.charsyam2013-02-051-2/+12
* Fixed many typos.guiquanz2013-01-191-2/+2
* BSD license added to every C source and header file.antirez2012-11-081-1/+1
* First implementation of Redis Sentinel.antirez2012-07-231-0/+15
* added explanation for the magic 511 backlog numberErik Dubbelboer2012-04-111-1/+5
* anetPeerToString() automatically populates ip/port with something that may be...antirez2012-03-071-1/+6
* Added a config directive for a Unix socket maskNathan Florea2011-10-101-1/+4
* CLIENT LIST implementedantirez2011-04-211-0/+10
* Remove newlines for networking errorsPieter Noordhuis2011-01-051-15/+15
* sockaddr_un.sun_path appears to never hold anything after accept()Pieter Noordhuis2010-10-131-5/+1
* Use different accept handlers for TCP and unix socket connectionsPieter Noordhuis2010-10-131-7/+26
* Move creating socket/bind+listen on socket to separate functionsPieter Noordhuis2010-10-131-44/+43
* Support for Redis to listen on a Unix socketPieter Noordhuis2010-08-011-0/+63
* redis.c split into many different C files.antirez2010-07-011-0/+270