From: Yingxin Cheng Date: Mon, 11 Mar 2019 08:12:57 +0000 (+0800) Subject: crimson/net: add peer_global_id to Connection X-Git-Tag: v15.1.0~3027^2~15 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=604ea739dea30ad73b7d49c6f95a7401eafb86af;p=ceph.git crimson/net: add peer_global_id to Connection Signed-off-by: Yingxin Cheng --- diff --git a/src/crimson/net/Connection.h b/src/crimson/net/Connection.h index b1b72c746325..d69d32ab0a10 100644 --- a/src/crimson/net/Connection.h +++ b/src/crimson/net/Connection.h @@ -29,6 +29,9 @@ class Connection : public seastar::enable_shared_from_this { entity_addr_t peer_addr; peer_type_t peer_type = -1; + public: + uint64_t peer_global_id = 0; + public: Connection() {} virtual ~Connection() {}