diff options
| author | Dennis Brentjes <d.brentjes@gmail.com> | 2016-10-20 12:43:29 +0200 |
|---|---|---|
| committer | Dennis Brentjes <d.brentjes@gmail.com> | 2016-10-20 12:43:29 +0200 |
| commit | ed83ebb3147ed2e261a709799e12d0eb43200bf3 (patch) | |
| tree | 6a8c4f75de8e06e2e8254aec0ec0cba7a8eca4b8 /libcmix-common | |
| parent | 6ecb3fc69ddafc4aeb18397555ac7e9cb2f7a4d9 (diff) | |
| download | cmix-ed83ebb3147ed2e261a709799e12d0eb43200bf3.tar.gz cmix-ed83ebb3147ed2e261a709799e12d0eb43200bf3.tar.bz2 cmix-ed83ebb3147ed2e261a709799e12d0eb43200bf3.zip | |
Shared secret key is now distributed to the other nodes.
Diffstat (limited to 'libcmix-common')
| -rw-r--r-- | libcmix-common/cmixprotofunctor.cpp | 1 | ||||
| -rw-r--r-- | libcmix-common/cmixprotofunctor.hpp | 5 | ||||
| -rw-r--r-- | libcmix-common/receiver.hpp | 1 |
3 files changed, 6 insertions, 1 deletions
diff --git a/libcmix-common/cmixprotofunctor.cpp b/libcmix-common/cmixprotofunctor.cpp index a026628..46e56a0 100644 --- a/libcmix-common/cmixprotofunctor.cpp +++ b/libcmix-common/cmixprotofunctor.cpp @@ -12,5 +12,6 @@ MESSAGE_SETTER_DEF(ImANode, imanode) MESSAGE_SETTER_DEF(ImAClient, imaclient) MESSAGE_SETTER_DEF(Bye, bye) MESSAGE_SETTER_DEF(KeyExchange, keyexchange) +MESSAGE_SETTER_DEF(SecretKey, secretkey) #undef MESSAGE_SETTER_DEF
\ No newline at end of file diff --git a/libcmix-common/cmixprotofunctor.hpp b/libcmix-common/cmixprotofunctor.hpp index c3f6fe9..86caa75 100644 --- a/libcmix-common/cmixprotofunctor.hpp +++ b/libcmix-common/cmixprotofunctor.hpp @@ -49,6 +49,11 @@ struct CMixProtoFunctor { * #MESSAGE_SETTER_DECL(KeyExchange) */ MESSAGE_SETTER_DECL(KeyExchange); + + /*! + * #MESSAGE_SETTER_DECL(SecretKey) + */ + MESSAGE_SETTER_DECL(SecretKey); #undef MESSAGE_SETTER }; diff --git a/libcmix-common/receiver.hpp b/libcmix-common/receiver.hpp index 2b05790..8a73e9c 100644 --- a/libcmix-common/receiver.hpp +++ b/libcmix-common/receiver.hpp @@ -7,7 +7,6 @@ /*! * \file */ - struct SenderReceiver; /*! |
