X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=lib%2Fmemcached_connect.c;h=78a7d70337aa560773e50e41c5307f0eb2001689;hb=ee09369500ef26c8c0bc74ea27504f2c9efe28ee;hp=5b024749b1f58038f24c515361c5d7f49a0e1365;hpb=8c34786ea9d4b879bf5c5cf7ad811836f0d1f37f;p=m6w6%2Flibmemcached diff --git a/lib/memcached_connect.c b/lib/memcached_connect.c index 5b024749..78a7d703 100644 --- a/lib/memcached_connect.c +++ b/lib/memcached_connect.c @@ -1,6 +1,9 @@ #include "common.h" #include +#include +#include +#include memcached_return memcached_connect(memcached_st *ptr) { @@ -20,8 +23,6 @@ memcached_return memcached_connect(memcached_st *ptr) { if (ptr->hosts[x].fd == -1) { - int flags; - if ((h= gethostbyname(ptr->hosts[x].hostname)) == NULL) return MEMCACHED_HOST_LOCKUP_FAILURE; @@ -30,7 +31,7 @@ memcached_return memcached_connect(memcached_st *ptr) servAddr.sin_port = htons(ptr->hosts[x].port); /* Create the socket */ - if ((ptr->hosts[0].fd= socket(AF_INET, SOCK_STREAM, 0)) < 0) + if ((ptr->hosts[x].fd= socket(AF_INET, SOCK_STREAM, 0)) < 0) { ptr->my_errno= errno; return MEMCACHED_CONNECTION_SOCKET_CREATE_FAILURE; @@ -45,14 +46,24 @@ memcached_return memcached_connect(memcached_st *ptr) /* For the moment, not getting a nonblocking mode will note be fatal */ if (ptr->flags & MEM_NO_BLOCK) { - flags= fcntl(ptr->hosts[0].fd, F_GETFL, 0); + int flags; + + flags= fcntl(ptr->hosts[x].fd, F_GETFL, 0); if (flags != -1) - (void)fcntl(ptr->hosts[0].fd, F_SETFL, flags | O_NONBLOCK); + (void)fcntl(ptr->hosts[x].fd, F_SETFL, flags | O_NONBLOCK); + } + + if (ptr->flags & MEM_TCP_NODELAY) + { + int flag= 1; + + setsockopt(ptr->hosts[x].fd, IPPROTO_TCP, TCP_NODELAY, + &flag, (socklen_t)sizeof(int)); } /* connect to server */ test_connect: - if (connect(ptr->hosts[0].fd, (struct sockaddr *) &servAddr, sizeof(servAddr)) < 0) + if (connect(ptr->hosts[x].fd, (struct sockaddr *) &servAddr, sizeof(servAddr)) < 0) { switch (errno) { /* We are spinning waiting on connect */