]> git.saurik.com Git - redis.git/blobdiff - src/anet.c
Scripting: Reset Lua fake client reply_bytes after command execution.
[redis.git] / src / anet.c
index 434d945c7d850edd8b8a8934d254bbc88e5d62d0..4b52425cf8166754cecabd5877b5622b32619e2b 100644 (file)
@@ -367,3 +367,18 @@ int anetPeerToString(int fd, char *ip, int *port) {
     if (port) *port = ntohs(sa.sin_port);
     return 0;
 }
+
+int anetSockName(int fd, char *ip, int *port) {
+    struct sockaddr_in sa;
+    socklen_t salen = sizeof(sa);
+
+    if (getsockname(fd,(struct sockaddr*)&sa,&salen) == -1) {
+        *port = 0;
+        ip[0] = '?';
+        ip[1] = '\0';
+        return -1;
+    }
+    if (ip) strcpy(ip,inet_ntoa(sa.sin_addr));
+    if (port) *port = ntohs(sa.sin_port);
+    return 0;
+}