X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libmemcached%2Fmemcached_flush.c;h=1011b3f18a3e908233254b7dac9089b9bf36c107;hb=fa50444663754645f6c03c67a3d60cb928562086;hp=f722cc904e6ea9835d4d8bbb1d40f004a1f1024b;hpb=933e5a561b10c1450563f1421b83d72396b805d2;p=m6w6%2Flibmemcached diff --git a/libmemcached/memcached_flush.c b/libmemcached/memcached_flush.c index f722cc90..1011b3f1 100644 --- a/libmemcached/memcached_flush.c +++ b/libmemcached/memcached_flush.c @@ -31,16 +31,18 @@ static memcached_return memcached_flush_textual(memcached_st *ptr, for (x= 0; x < ptr->number_of_hosts; x++) { + bool no_reply= (ptr->flags & MEM_NOREPLY); if (expiration) - send_length= snprintf(buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, - "flush_all %llu\r\n", (unsigned long long)expiration); + send_length= (size_t) snprintf(buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, + "flush_all %llu%s\r\n", + (unsigned long long)expiration, no_reply ? " noreply" : ""); else - send_length= snprintf(buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, - "flush_all\r\n"); + send_length= (size_t) snprintf(buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, + "flush_all%s\r\n", no_reply ? " noreply" : ""); rc= memcached_do(&ptr->hosts[x], buffer, send_length, 1); - if (rc == MEMCACHED_SUCCESS) + if (rc == MEMCACHED_SUCCESS && !no_reply) (void)memcached_response(&ptr->hosts[x], buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, NULL); } @@ -51,7 +53,7 @@ static memcached_return memcached_flush_binary(memcached_st *ptr, time_t expiration) { unsigned int x; - protocol_binary_request_flush request= {0}; + protocol_binary_request_flush request= {.bytes= {0}}; unlikely (ptr->number_of_hosts == 0) return MEMCACHED_NO_SERVERS; @@ -61,10 +63,14 @@ static memcached_return memcached_flush_binary(memcached_st *ptr, request.message.header.request.extlen= 4; request.message.header.request.datatype= PROTOCOL_BINARY_RAW_BYTES; request.message.header.request.bodylen= htonl(request.message.header.request.extlen); - request.message.body.expiration= htonl(expiration); + request.message.body.expiration= htonl((uint32_t) expiration); for (x= 0; x < ptr->number_of_hosts; x++) { + if (ptr->flags & MEM_NOREPLY) + request.message.header.request.opcode= PROTOCOL_BINARY_CMD_FLUSHQ; + else + request.message.header.request.opcode= PROTOCOL_BINARY_CMD_FLUSH; if (memcached_do(&ptr->hosts[x], request.bytes, sizeof(request.bytes), 1) != MEMCACHED_SUCCESS) {