0.16
* Work on the UDP protocol
* Added get_by_key, set_by_key tests for C++ API
+ * Fix for limit_maxbytes to be 64bit in stats
0.15 Tue Jan 29 14:55:44 PST 2008
* More work on the C++ API.
uint32_t rusage_system_microseconds;
uint32_t curr_items;
uint32_t total_items;
- uint32_t limit_maxbytes;
+ uint64_t limit_maxbytes;
uint32_t curr_connections;
uint32_t total_connections;
uint32_t connection_structures;
else if (!memcmp("bytes_written", key, strlen("bytes_written")))
length= snprintf(buffer, SMALL_STRING_LEN,"%llu", (unsigned long long)stat->bytes_written);
else if (!memcmp("limit_maxbytes", key, strlen("limit_maxbytes")))
- length= snprintf(buffer, SMALL_STRING_LEN,"%u", stat->limit_maxbytes);
+ length= snprintf(buffer, SMALL_STRING_LEN,"%llu", stat->limit_maxbytes);
else if (!memcmp("threads", key, strlen("threads")))
length= snprintf(buffer, SMALL_STRING_LEN,"%u", stat->threads);
else