X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=example%2Fmemcached_light.cc;h=c92e5ea279d7d3bbfd8f6d50e87c5ea9250d3b13;hb=3dcd41c50068eec906a1a11a178e9b3f08ef2326;hp=61c5314da950ce4d5fe42882355bede0185fd0ae;hpb=51b26f0157fe827183eeb73bf27b67f6211f627e;p=m6w6%2Flibmemcached diff --git a/example/memcached_light.cc b/example/memcached_light.cc index 61c5314d..c92e5ea2 100644 --- a/example/memcached_light.cc +++ b/example/memcached_light.cc @@ -9,11 +9,11 @@ * With that in mind, let me give you some pointers into the source: * storage.c/h - Implements the item store for this server and not really * interesting for this example. - * interface_v0.c - Shows an implementation of the memcached server by using + * interface_v0.cc - Shows an implementation of the memcached server by using * the "raw" access to the packets as they arrive - * interface_v1.c - Shows an implementation of the memcached server by using + * interface_v1.cc - Shows an implementation of the memcached server by using * the more "logical" interface. - * memcached_light.c - This file sets up all of the sockets and run the main + * memcached_light.cc- This file sets up all of the sockets and run the main * message loop. * * @@ -23,7 +23,7 @@ * the library) */ -#include "config.h" +#include #include #include @@ -433,13 +433,6 @@ int main(int argc, char **argv) { memcached_binary_protocol_callback_st *interface= &interface_v0_impl; - /* - * We need to initialize the handlers manually due to a bug in the - * warnings generated by struct initialization in gcc (all the way up to 4.4) - */ - initialize_interface_v0_handler(); - initialize_interface_v1_handler(); - { enum long_option_t { OPT_HELP, @@ -554,6 +547,14 @@ int main(int argc, char **argv) util::log_info_st log_file(argv[0], global_options.log_file, false); log_file.write(util::VERBOSE_NOTICE, "starting log"); + /* + * We need to initialize the handlers manually due to a bug in the + * warnings generated by struct initialization in gcc (all the way up to 4.4) + */ + initialize_interface_v0_handler(log_file); + initialize_interface_v1_handler(log_file); + + if (server_socket(log_file, global_options.service) == false) { return EXIT_FAILURE;