(conn ziface.IConnection)
| 43 | } |
| 44 | |
| 45 | func makeDefaultMsg(conn ziface.IConnection) []byte { |
| 46 | msg := fmt.Sprintf("heartbeat [%s->%s]", conn.LocalAddr(), conn.RemoteAddr()) |
| 47 | return []byte(msg) |
| 48 | } |
| 49 | |
| 50 | func notAliveDefaultFunc(conn ziface.IConnection) { |
| 51 | zlog.Ins().InfoF("Remote connection %s is not alive, stop it", conn.RemoteAddr()) |
nothing calls this directly
no test coverage detected