Cleanup, including simplification of root server picking algorithm since we no longer need all that craziness.

This commit is contained in:
Adam Ierymenko 2015-10-27 10:37:39 -07:00
parent 9617208e40
commit 8a7a0b6b88
3 changed files with 51 additions and 2 deletions

View file

@ -158,7 +158,20 @@ public:
* while PROXY_SEND is used to implement proxy sending (which right
* now is only used to send RENDEZVOUS).
*/
STATE_MESSAGE_PROXY_SEND = 6
STATE_MESSAGE_PROXY_SEND = 6,
/**
* Replicate a network config for a network we belong to:
* <[8] 64-bit network ID>
* <[2] 16-bit length of network config>
* <[...] serialized network config>
*
* This is used by clusters to avoid every member having to query
* for the same netconf for networks all members belong to.
*
* TODO: not implemented yet!
*/
STATE_MESSAGE_NETWORK_CONFIG = 7
};
/**