From 51010eccd4d2746571ae95979a6058d8ee29b3da Mon Sep 17 00:00:00 2001 From: Jon Siwek Date: Fri, 13 Mar 2015 13:00:29 -0500 Subject: [PATCH] Add Connection class getter methods for flow labels. BIT-1309 #close --- src/Conn.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Conn.h b/src/Conn.h index 966c77a9f8..20e60d2617 100644 --- a/src/Conn.h +++ b/src/Conn.h @@ -263,6 +263,9 @@ public: void CheckFlowLabel(bool is_orig, uint32 flow_label); + uint32 GetOrigFlowLabel() { return orig_flow_label; } + uint32 GetRespFlowLabel() { return resp_flow_label; } + protected: Connection() { persistent = 0; }