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


Golang Network.LocalPeer方法代碼示例

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


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

示例1: NetworkConns

func (p *printer) NetworkConns(ni inet.Network) {

	fmt.Fprintf(p.w, "%s connected to:\n", ni.LocalPeer())
	for _, c := range ni.Conns() {
		fmt.Fprintf(p.w, "\t%s (addr: %s)\n", c.RemotePeer(), c.RemoteMultiaddr())
	}
	fmt.Fprintf(p.w, "\n")
}
開發者ID:djbarber,項目名稱:ipfs-hack,代碼行數:8,代碼來源:mock_printer.go

示例2: expectConnectedness

func expectConnectedness(t *testing.T, a, b inet.Network, expected inet.Connectedness) {
	es := "%s is connected to %s, but Connectedness incorrect. %s %s"
	if a.Connectedness(b.LocalPeer()) != expected {
		t.Errorf(es, a, b, printConns(a), printConns(b))
	}

	// test symmetric case
	if b.Connectedness(a.LocalPeer()) != expected {
		t.Errorf(es, b, a, printConns(b), printConns(a))
	}
}
開發者ID:djbarber,項目名稱:ipfs-hack,代碼行數:11,代碼來源:swarm_net_test.go

示例3: Disconnected

func (nn *metricsNotifiee) Disconnected(n inet.Network, v inet.Conn) {
	peersTotalGauge(n.LocalPeer()).Set(float64(len(n.Conns())))
}
開發者ID:djbarber,項目名稱:ipfs-hack,代碼行數:3,代碼來源:swarm.go

示例4: LinksBetweenNets

func (mn *mocknet) LinksBetweenNets(n1, n2 inet.Network) []Link {
	return mn.LinksBetweenPeers(n1.LocalPeer(), n2.LocalPeer())
}
開發者ID:djbarber,項目名稱:ipfs-hack,代碼行數:3,代碼來源:mock_net.go

示例5: DisconnectNets

func (mn *mocknet) DisconnectNets(n1, n2 inet.Network) error {
	return n1.ClosePeer(n2.LocalPeer())
}
開發者ID:djbarber,項目名稱:ipfs-hack,代碼行數:3,代碼來源:mock_net.go

示例6: ConnectNets

func (mn *mocknet) ConnectNets(a, b inet.Network) (inet.Conn, error) {
	return a.DialPeer(mn.ctx, b.LocalPeer())
}
開發者ID:djbarber,項目名稱:ipfs-hack,代碼行數:3,代碼來源:mock_net.go

示例7: UnlinkNets

func (mn *mocknet) UnlinkNets(n1, n2 inet.Network) error {
	return mn.UnlinkPeers(n1.LocalPeer(), n2.LocalPeer())
}
開發者ID:djbarber,項目名稱:ipfs-hack,代碼行數:3,代碼來源:mock_net.go

示例8: DivulgeAddresses

func DivulgeAddresses(a, b inet.Network) {
	id := a.LocalPeer()
	addrs := a.Peerstore().Addrs(id)
	b.Peerstore().AddAddrs(id, addrs, peer.PermanentAddrTTL)
}
開發者ID:djbarber,項目名稱:ipfs-hack,代碼行數:5,代碼來源:util.go


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