本文整理匯總了Golang中euphoria/io/heim/proto.Agent.IDString方法的典型用法代碼示例。如果您正苦於以下問題:Golang Agent.IDString方法的具體用法?Golang Agent.IDString怎麽用?Golang Agent.IDString使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類euphoria/io/heim/proto.Agent
的用法示例。
在下文中一共展示了Agent.IDString方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: newAgentCredentials
func newAgentCredentials(agent *proto.Agent, agentKey *security.ManagedKey) (*agentCredentials, error) {
if agentKey.Encrypted() {
return nil, security.ErrKeyMustBeDecrypted
}
ac := &agentCredentials{
ID: agent.IDString(),
Key: agentKey.Plaintext,
}
return ac, nil
}
示例2: Register
func (atb *AgentTrackerBinding) Register(ctx scope.Context, agent *proto.Agent) error {
row := &Agent{
ID: agent.IDString(),
IV: agent.IV,
MAC: agent.MAC,
Created: agent.Created,
}
if agent.EncryptedClientKey != nil {
row.EncryptedClientKey = agent.EncryptedClientKey.Ciphertext
}
if err := atb.Backend.DbMap.Insert(row); err != nil {
if strings.HasPrefix(err.Error(), "pq: duplicate key value") {
return proto.ErrAgentAlreadyExists
}
return err
}
backend.Logger(ctx).Printf("registered agent %s", agent.IDString())
return nil
}
示例3: Register
func (t *agentTracker) Register(ctx scope.Context, agent *proto.Agent) error {
t.b.Lock()
defer t.b.Unlock()
if _, ok := t.b.agents[agent.IDString()]; ok {
return proto.ErrAgentAlreadyExists
}
if t.b.agents == nil {
t.b.agents = map[string]*proto.Agent{agent.IDString(): agent}
} else {
t.b.agents[agent.IDString()] = agent
}
return nil
}