package peer type RoutingPingReq struct { PeerIP byte Type byte // 0 => local, 1 => direct, 2 => Via Addr []byte Port int SentAt int64 // unix milli } type RoutingPingResp struct { PeerIP byte Type byte // 0 => local, 1 => direct, 2 => Via Addr []byte Port int SentAt int64 RecvdAt int64 }