當前位置: 首頁>>代碼示例>>Golang>>正文


Golang Agent.IDString方法代碼示例

本文整理匯總了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
}
開發者ID:logan,項目名稱:heim,代碼行數:11,代碼來源:agent.go

示例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
}
開發者ID:ArkaneMoose,項目名稱:heim,代碼行數:21,代碼來源:agent.go

示例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
}
開發者ID:robot0x,項目名稱:heim,代碼行數:14,代碼來源:agent.go


注:本文中的euphoria/io/heim/proto.Agent.IDString方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。