X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=lib%2Fmemcached_quit.c;h=366f7872cd76a229a3d547eb43e43ca683e8c691;hb=ac7b4013b6ada79981f5385c10c2ba242df58143;hp=20a76e2915e3eb482c9db123f7c289ce4c56fb8a;hpb=131622cdc2710ecd9ad554ce7d08c6003fbdcf6e;p=awesomized%2Flibmemcached diff --git a/lib/memcached_quit.c b/lib/memcached_quit.c index 20a76e29..366f7872 100644 --- a/lib/memcached_quit.c +++ b/lib/memcached_quit.c @@ -9,38 +9,38 @@ will force data to be completed. */ -void memcached_quit_server(memcached_st *ptr, unsigned int server_key) +void memcached_quit_server(memcached_server_st *ptr, uint8_t io_death) { - if (ptr->hosts == NULL || - ptr->number_of_hosts == 0 || - server_key > ptr->number_of_hosts) - return; - - if (ptr->hosts[server_key].fd != -1) + if (ptr->fd != -1) { - if (ptr->flags & MEM_NO_BLOCK && ptr->hosts[server_key].stack_responses) - memcached_io_flush(ptr, server_key); - - memcached_io_write(ptr, server_key, "quit\r\n", 6, 1); - - close(ptr->hosts[server_key].fd); - ptr->hosts[server_key].fd= -1; - ptr->hosts[server_key].stack_responses= 0; - ptr->hosts[server_key].cursor_active= 0; + if (io_death == 0) + { + memcached_return rc; + rc= memcached_do(ptr, "quit\r\n", 6, 1); + WATCHPOINT_ASSERT(rc == MEMCACHED_SUCCESS || rc == MEMCACHED_FETCH_NOTFINISHED); + + memcached_io_close(ptr); + } + + ptr->fd= -1; + ptr->write_buffer_offset= 0; + ptr->read_buffer_length= 0; + ptr->read_ptr= ptr->read_buffer; + memcached_server_response_reset(ptr); } - - ptr->connected--; } void memcached_quit(memcached_st *ptr) { unsigned int x; + if (ptr->hosts == NULL || + ptr->number_of_hosts == 0) + return; + if (ptr->hosts && ptr->number_of_hosts) { for (x= 0; x < ptr->number_of_hosts; x++) - memcached_quit_server(ptr, x); + memcached_quit_server(&ptr->hosts[x], 0); } - - ptr->connected= 0; }