当前位置: 首页>>代码示例>>Golang>>正文


Golang Connection.Addr方法代码示例

本文整理汇总了Golang中github.com/skycoin/skycoin/src/daemon/gnet.Connection.Addr方法的典型用法代码示例。如果您正苦于以下问题:Golang Connection.Addr方法的具体用法?Golang Connection.Addr怎么用?Golang Connection.Addr使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在github.com/skycoin/skycoin/src/daemon/gnet.Connection的用法示例。


在下文中一共展示了Connection.Addr方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: onGnetDisconnect

// Triggered when an gnet.Connection terminates. Disconnect events are not
// pushed to a separate channel, because disconnects are already processed
// by a queue in the daemon.Run() select{}.
func (self *Daemon) onGnetDisconnect(c *gnet.Connection,
	reason gnet.DisconnectReason) {
	a := c.Addr()
	logger.Info("%s disconnected because: %v", a, reason)
	duration, exists := BlacklistOffenses[reason]
	if exists {
		self.Peers.Peers.AddBlacklistEntry(a, duration)
	}
	delete(self.OutgoingConnections, a)
	delete(self.ExpectingIntroductions, a)
	self.Visor.RemoveConnection(a)
	self.removeIPCount(a)
	self.removeConnectionMirror(a)
}
开发者ID:Chao-Jia,项目名称:skycoin,代码行数:17,代码来源:daemon.go

示例2: onGnetConnect

// Triggered when an gnet.Connection is connected
func (self *Daemon) onGnetConnect(c *gnet.Connection, solicited bool) {
	self.onConnectEvent <- ConnectEvent{Addr: c.Addr(), Solicited: solicited}
}
开发者ID:Chao-Jia,项目名称:skycoin,代码行数:4,代码来源:daemon.go


注:本文中的github.com/skycoin/skycoin/src/daemon/gnet.Connection.Addr方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。