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


Golang Multiaddr.Protocols方法代碼示例

本文整理匯總了Golang中github.com/multiformats/go-multiaddr.Multiaddr.Protocols方法的典型用法代碼示例。如果您正苦於以下問題:Golang Multiaddr.Protocols方法的具體用法?Golang Multiaddr.Protocols怎麽用?Golang Multiaddr.Protocols使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/multiformats/go-multiaddr.Multiaddr的用法示例。


在下文中一共展示了Multiaddr.Protocols方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: HasConsistentTransport

// HasConsistentTransport returns true if the address 'a' shares a
// protocol set with any address in the green set. This is used
// to check if a given address might be one of the addresses a peer is
// listening on.
func HasConsistentTransport(a ma.Multiaddr, green []ma.Multiaddr) bool {
	protosMatch := func(a, b []ma.Protocol) bool {
		if len(a) != len(b) {
			return false
		}

		for i, p := range a {
			if b[i].Code != p.Code {
				return false
			}
		}
		return true
	}

	protos := a.Protocols()

	for _, ga := range green {
		if protosMatch(protos, ga.Protocols()) {
			return true
		}
	}

	return false
}
開發者ID:libp2p,項目名稱:go-libp2p,代碼行數:28,代碼來源:id.go

示例2: Matches

func (ptrn *pattern) Matches(a ma.Multiaddr) bool {
	ok, rem := ptrn.partialMatch(a.Protocols())
	return ok && len(rem) == 0
}
開發者ID:whyrusleeping,項目名稱:mafmt,代碼行數:4,代碼來源:patterns.go


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