X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=example%2Finterface_v1.c;h=2fcc0790da7a260910c3ddb0036d5cf0ed4479d8;hb=f02ad6ec3ba79c909dfe0c076056c103e0944765;hp=bab1cd974f9e303826b610ec0b8d3212307490ab;hpb=7dde5cc56cb9546631b92247676a75e04fb9ed03;p=awesomized%2Flibmemcached diff --git a/example/interface_v1.c b/example/interface_v1.c index bab1cd97..2fcc0790 100644 --- a/example/interface_v1.c +++ b/example/interface_v1.c @@ -8,6 +8,7 @@ * you will not receive the next command before a answer to the previous * command is being sent. */ +#include "config.h" #include #include #include @@ -64,7 +65,8 @@ static protocol_binary_response_status append_handler(const void *cookie, const void* val, uint32_t vallen, uint64_t cas, - uint64_t *result_cas) { + uint64_t *result_cas) +{ (void)cookie; protocol_binary_response_status rval= PROTOCOL_BINARY_RESPONSE_SUCCESS; @@ -391,8 +393,8 @@ static protocol_binary_response_status version_handler(const void *cookie, return response_handler(cookie, version, (uint32_t)strlen(version)); } -struct memcached_binary_protocol_callback_st interface_v1_impl= { - .interface_version= 1, +memcached_binary_protocol_callback_st interface_v1_impl= { + .interface_version= MEMCACHED_PROTOCOL_HANDLER_V1, .interface.v1= { .add= add_handler, .append= append_handler,