X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=lib%2Fmemcached_connect.c;h=d1b2dcabf1244ff51dd37117ab0bfa1f716f3c28;hb=8a86b578acc594d37a8638e3e0afba1286c4b6ca;hp=9f0c6e7dee863a7fccaaebcce87cd77bb73be2a4;hpb=4792e6fd1af5001670384301816fba0665dfa693;p=m6w6%2Flibmemcached diff --git a/lib/memcached_connect.c b/lib/memcached_connect.c index 9f0c6e7d..d1b2dcab 100644 --- a/lib/memcached_connect.c +++ b/lib/memcached_connect.c @@ -10,9 +10,18 @@ static memcached_return set_hostinfo(memcached_server_st *server) sprintf(str_port, "%u", server->port); memset(&hints, 0, sizeof(hints)); + hints.ai_family= AF_INET; - hints.ai_socktype= SOCK_STREAM; - hints.ai_protocol= IPPROTO_TCP; + if (server->type == MEMCACHED_CONNECTION_UDP) + { + hints.ai_protocol= IPPROTO_UDP; + hints.ai_socktype= SOCK_DGRAM; + } + else + { + hints.ai_socktype= SOCK_STREAM; + hints.ai_protocol= IPPROTO_TCP; + } e= getaddrinfo(server->hostname, str_port, &hints, &ai); if (e != 0) @@ -71,41 +80,7 @@ test_connect: return MEMCACHED_SUCCESS; } -static memcached_return udp_connect(memcached_server_st *ptr) -{ - if (ptr->fd == -1) - { - /* Old connection junk still is in the structure */ - WATCHPOINT_ASSERT(ptr->cursor_active == 0); - - /* - If we have not allocated the hosts object. - Or if the cache has not been set. - */ - if (ptr->sockaddr_inited == MEMCACHED_NOT_ALLOCATED || - (!(ptr->root->flags & MEM_USE_CACHE_LOOKUPS))) - { - memcached_return rc; - - rc= set_hostinfo(ptr); - if (rc != MEMCACHED_SUCCESS) - return rc; - - ptr->sockaddr_inited= MEMCACHED_ALLOCATED; - } - - /* Create the socket */ - if ((ptr->fd= socket(AF_INET, SOCK_DGRAM, 0)) < 0) - { - ptr->cached_errno= errno; - return MEMCACHED_CONNECTION_SOCKET_CREATE_FAILURE; - } - } - - return MEMCACHED_SUCCESS; -} - -static memcached_return tcp_connect(memcached_server_st *ptr) +static memcached_return network_connect(memcached_server_st *ptr) { if (ptr->fd == -1) { @@ -136,6 +111,9 @@ static memcached_return tcp_connect(memcached_server_st *ptr) return MEMCACHED_CONNECTION_SOCKET_CREATE_FAILURE; } + if (ptr->type == MEMCACHED_CONNECTION_UDP) + return MEMCACHED_SUCCESS; + if (ptr->root->flags & MEM_NO_BLOCK) { int error; @@ -217,7 +195,6 @@ test_connect: break; default: ptr->cached_errno= errno; - WATCHPOINT_ASSERT(errno == ECONNREFUSED); WATCHPOINT_ERRNO(ptr->cached_errno); close(ptr->fd); ptr->fd= -1; @@ -245,10 +222,8 @@ memcached_return memcached_connect(memcached_server_st *ptr) rc= MEMCACHED_NOT_SUPPORTED; break; case MEMCACHED_CONNECTION_UDP: - rc= udp_connect(ptr); - break; case MEMCACHED_CONNECTION_TCP: - rc= tcp_connect(ptr); + rc= network_connect(ptr); break; case MEMCACHED_CONNECTION_UNIX_SOCKET: rc= unix_socket_connect(ptr);