Don't use the verboten 127.0.0.1

Alleviates some unnecessary headaches with the database
unstable
James Lee 2012-02-10 13:31:02 -07:00
parent b5dc50968b
commit fc088fa379
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ int dlsocket(void *libc)
fd = libc_socket(AF_INET, SOCK_STREAM, 0);
if(fd == -1) break;
sin.sin_addr.s_addr = libc_inet_addr("127.0.0.1");
sin.sin_addr.s_addr = libc_inet_addr("127.1.1.1");
sin.sin_port = htons(4444);
sin.sin_family = AF_INET;