Logo white

Peter M. Groen / redox

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Commits 152
  • Compare
  • Branches 1
  • Tags 0
  • redox
  • src
  • client.cpp
31 Jan, 2015
2 commits
  • Add Doxyfile for documentation generation ...
    67c5defc
    Instructions in README, some minor changes to comments.
    Hayk Martirosyan authored
    2015-01-31 02:32:26 -0800  
    Browse File »
  • Move from string command to vector of strings ...
    55c56d87
    This enables full support for binary data, with no tokenization needed
    and all the assumptions that come with that. All of the core methods are
    changed to accept vector<string>& instead of string&. Ported all
    examples and tutorial as well.
    Hayk Martirosyan authored
    2015-01-31 01:24:23 -0800  
    Browse File »

30 Jan, 2015
2 commits
  • Fix disconnect behavior, when hiredis returns null reply ...
    3d0b073e
    Call Redox::disconnectCallback from processReply
    Hayk Martirosyan authored
    2015-01-30 14:42:53 -0800  
    Browse File »
  • Move everything out of constructor to .connect() ...
    b0c70bce
    This makes more sense logically, and lets the Redox object get default
    constructed with nothing but the optional logger parameters.
    Hayk Martirosyan authored
    2015-01-30 01:47:39 -0800  
    Browse File »

27 Jan, 2015
4 commits
  • Explicitly use quotes in wrapper methods
    47e3a8f3
    Hayk Martirosyan authored
    2015-01-27 17:33:57 -0800  
    Browse File »
  • Separated out include directory, started tutorial ...
    7a15a7f2
    Separate include directory so that examples can reference the same thing
    whether installed in the system or from the local folder.
    Hayk Martirosyan authored
    2015-01-27 15:07:59 -0800  
    Browse File »
  • Make .disconnect() a combination of .wait() and .stop() ...
    d6beae7c
    More intuitive if disconnect() blocks like connect(). Most clients will
    want to use these two methods. For more fine grained control,
    disconnect() is just a combo of stop() and wait().
    Hayk Martirosyan authored
    2015-01-27 02:07:03 -0800  
    Browse File »
  • Generate shared and static libraries, one master header ...
    ca1d3171
    Configure CMake to generate libredox.so and libredox_static.a, and have
    all examples use the dynamic library. This is how Redox should be used
    in practice, and greatly reduces the compilation time of the examples.
    
    Also renamed redox.[ch]pp to client.[ch]pp and created one master header
    redox.hpp for users to include. This header right now just includes
    client.hpp, command.hpp, and subscriber.hpp.
    Hayk Martirosyan authored
    2015-01-27 01:46:27 -0800  
    Browse File »