Raised default timeout.
[awesomized/libmemcached] / lib / memcached_quit.c
1 #include "common.h"
2
3 /*
4 This closes all connections (forces flush of input as well).
5
6 Maybe add a host specific, or key specific version?
7
8 The reason we send "quit" is that in case we have buffered IO, this
9 will force data to be completed.
10 */
11
12 void memcached_quit_server(memcached_st *ptr, unsigned int server_key, uint8_t io_death)
13 {
14 if (server_key > ptr->number_of_hosts)
15 {
16 WATCHPOINT_ASSERT(0);
17 return;
18 }
19
20 if (ptr->hosts[server_key].fd != -1)
21 {
22 if (io_death == 0)
23 {
24 memcached_return rc;
25 rc= memcached_do(ptr, server_key, "quit\r\n", 6, 1);
26 WATCHPOINT_ASSERT(rc == MEMCACHED_SUCCESS || rc == MEMCACHED_FETCH_NOTFINISHED);
27
28 memcached_io_close(ptr, server_key);
29 }
30
31 ptr->hosts[server_key].fd= -1;
32 ptr->hosts[server_key].stack_responses= 0;
33 ptr->hosts[server_key].cursor_active= 0;
34 ptr->hosts[server_key].write_buffer_offset= 0;
35 ptr->hosts[server_key].read_buffer_length= 0;
36 ptr->hosts[server_key].read_ptr= ptr->hosts[server_key].read_buffer;
37 ptr->hosts[server_key].write_ptr= ptr->hosts[server_key].write_buffer;
38 }
39
40 ptr->connected--;
41 }
42
43 void memcached_quit(memcached_st *ptr)
44 {
45 unsigned int x;
46 if (ptr->hosts == NULL ||
47 ptr->number_of_hosts == 0)
48 return;
49
50 if (ptr->hosts && ptr->number_of_hosts)
51 {
52 for (x= 0; x < ptr->number_of_hosts; x++)
53 memcached_quit_server(ptr, x, 0);
54 }
55
56 ptr->connected= 0;
57 }