3 memcached_return
memcached_verbosity(memcached_st
*ptr
, unsigned int verbosity
)
8 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
10 rc
= memcached_connect(ptr
);
12 if (rc
!= MEMCACHED_SUCCESS
)
13 rc
= MEMCACHED_SOME_ERRORS
;
15 send_length
= snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
16 "verbosity %u\r\n", verbosity
);
18 for (x
= 0; x
< ptr
->number_of_hosts
; x
++)
22 if ((write(ptr
->hosts
[x
].fd
, buffer
, send_length
) == -1))
23 return MEMCACHED_WRITE_FAILURE
;
25 rc
= memcached_response(ptr
, buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
, x
);
27 if (rc
!= MEMCACHED_SUCCESS
)
28 rc
= MEMCACHED_SOME_ERRORS
;