diff --git a/processes.go b/processes.go index 716f6c6..9feeb03 100644 --- a/processes.go +++ b/processes.go @@ -143,7 +143,9 @@ func (p *processes) Start(proc process) { } if proc.configuration.StartProcesses.IsCentralKey { - + proc.startup.startProcess(proc, KeysRequestUpdate, nil) + proc.startup.startProcess(proc, KeysAllow, nil) + proc.startup.startProcess(proc, KeysDelete, nil) } if proc.configuration.StartProcesses.IsCentralAcl { diff --git a/requests.go b/requests.go index 13d4b5b..31dd020 100644 --- a/requests.go +++ b/requests.go @@ -124,9 +124,11 @@ const ( // REQPublicKey will get the public ed25519 key from a node. PublicKey Method = "publicKey" - // REQKeysRequestUpdate will get all the public keys from central if an update is available. + // REQKeysRequestUpdate will receive all the messages of the current hash of all public keys + // a node have stored, and send out an update if needed.. KeysRequestUpdate Method = "keysRequestUpdate" - // REQKeysDeliverUpdate will deliver the public from central to a node. + // REQKeysRequestUpdatePublisher send the current hash of the locally stored public keys to + // the central key server, and get an update from central if needed. KeysDeliverUpdate Method = "keysDeliverUpdate" // REQKeysAllow KeysAllow Method = "keysAllow"