]> git.saurik.com Git - redis.git/commitdiff
Rename variable sockpath to unixsocket
authorPieter Noordhuis <pcnoordhuis@gmail.com>
Wed, 13 Oct 2010 15:17:56 +0000 (17:17 +0200)
committerPieter Noordhuis <pcnoordhuis@gmail.com>
Wed, 13 Oct 2010 15:17:56 +0000 (17:17 +0200)
redis.conf
src/config.c
src/redis.c
src/redis.h

index 75420f64913e56364d1aa1ced631276cf4e2da7c..a01bdd1566e93e91f73494b57c7b1685b62260cc 100644 (file)
@@ -29,10 +29,11 @@ port 6379
 #
 # bind 127.0.0.1
 
-# Specify the path for the domain socket that will be used to listen for
-# incoming connections. If not specified, Redis will not use a domain socket.
+# Specify the path for the unix socket that will be used to listen for
+# incoming connections. There is no default, so Redis will not listen
+# on a unix socket when not specified.
 #
-# socket /tmp/redis.sock
+# unixsocket /tmp/redis.sock
 
 # Close the connection after a client is idle for N seconds (0 to disable)
 timeout 300
index b11bbd0f557494b051c57bc1ad6d0ae9f48c31be..6b281a14289a6583a1ecdbccde3f72e2617cf66f 100644 (file)
@@ -73,8 +73,8 @@ void loadServerConfig(char *filename) {
             }
         } else if (!strcasecmp(argv[0],"bind") && argc == 2) {
             server.bindaddr = zstrdup(argv[1]);
-        } else if (!strcasecmp(argv[0],"socket") && argc == 2) {
-            server.sockpath = zstrdup(argv[1]);
+        } else if (!strcasecmp(argv[0],"unixsocket") && argc == 2) {
+            server.unixsocket = zstrdup(argv[1]);
         } else if (!strcasecmp(argv[0],"save") && argc == 3) {
             int seconds = atoi(argv[1]);
             int changes = atoi(argv[2]);
index 65675cdf3f85db17e1f6c74850d338fa99e65741..0c3d0ce924037b1637fff610f5114e2143439d52 100644 (file)
@@ -698,7 +698,7 @@ void createSharedObjects(void) {
 void initServerConfig() {
     server.port = REDIS_SERVERPORT;
     server.bindaddr = NULL;
-    server.sockpath = NULL;
+    server.unixsocket = NULL;
     server.ipfd = -1;
     server.sofd = -1;
     server.dbnum = REDIS_DEFAULT_DBNUM;
@@ -783,9 +783,9 @@ void initServer() {
             exit(1);
         }
     }
-    if (server.sockpath != NULL) {
-        unlink(server.sockpath); /* don't care if this fails */
-        server.sofd = anetUnixServer(server.neterr,server.sockpath);
+    if (server.unixsocket != NULL) {
+        unlink(server.unixsocket); /* don't care if this fails */
+        server.sofd = anetUnixServer(server.neterr,server.unixsocket);
         if (server.sofd == ANET_ERR) {
             redisLog(REDIS_WARNING, "Opening socket: %s", server.neterr);
             exit(1);
@@ -1438,7 +1438,7 @@ int main(int argc, char **argv) {
     if (server.ipfd > 0)
         redisLog(REDIS_NOTICE,"The server is now ready to accept connections on port %d", server.port);
     if (server.sofd > 0)
-        redisLog(REDIS_NOTICE,"The server is now ready to accept connections at %s", server.sockpath);
+        redisLog(REDIS_NOTICE,"The server is now ready to accept connections at %s", server.unixsocket);
     aeSetBeforeSleepProc(server.el,beforeSleep);
     aeMain(server.el);
     aeDeleteEventLoop(server.el);
index 079a67ba7704f597190c4c85534ab014248b8c9b..bfdde1a05cef3b35d1381e549dce826da08e21fc 100644 (file)
@@ -330,7 +330,7 @@ struct redisServer {
     pthread_t mainthread;
     int port;
     char *bindaddr;
-    char *sockpath;
+    char *unixsocket;
     int ipfd;
     int sofd;
     redisDb *db;