| Age | Commit message (Collapse) | Author |
|
Adds a minimum number of messages per mix.
Embeds the destination in the message.
Clients now send messages to themselves.
|
|
Changed some of the boilerplate so it's more conveniant to add types.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Mainly covers the network rewrites.
|
|
|
|
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.
|
|
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.
|
|
Clients now send their public key to each node and the node calculates
the shared secret. The node does not yet respond with it's public key.
To keep this commit smaller.
Nodes now disconnect from each other in a better way.
Getting the relevant crypto api is now done with a generic function.
What crypto algorithm and implemenation is beign used can be selected in
the cmake cache (use cmake-gui or ccmake)
Clients now connect correctly to multiple nodes.
|
|
|