aboutsummaryrefslogtreecommitdiff
path: root/libcmix-network/protobufclient.hpp
AgeCommit message (Collapse)Author
2017-04-16Updated documentation and bumped Cmix to Version 1.0Dennis Brentjes
2016-12-01Removed a large chunk of code duplication in the network code.Dennis Brentjes
2016-10-21Adds SSL connections between nodes.Dennis Brentjes
2016-10-16Updates all the documentation.Dennis Brentjes
Mainly covers the network rewrites.
2016-10-13Second big network rewrite.Dennis Brentjes
This time without the ugly SFINAE hack to restrict sending and receiving on Senders and Receivers respectively. Replaced this hack with private inheritance and using declerations. Also renamed receive to async_receive to better reflect the behaviour.
2016-10-13Added a stop condition for the client,Dennis Brentjes
When all the nodes have send a bye to the client, the client will shut down.
2016-10-12Major network rewrite.Dennis Brentjes
One generic class has been introduced to handle all connection types. Typedefs provide Sender Receiver and SenderReceiver types, which limit the functionality of the types. As to not accidentally communicate with the wrong node about things.