Skip to content
Snippets Groups Projects
Commit 5fd233f0 authored by Adrien Béraud's avatar Adrien Béraud
Browse files

ChannelSocket: make some fields const

Change-Id: I44eca33dc35747eda86cee32be38782cb96d077b
parent cd7a7bd4
Branches
No related tags found
No related merge requests found
......@@ -820,10 +820,10 @@ public:
ChannelReadyCb readyCb_ {};
OnShutdownCb shutdownCb_ {};
std::atomic_bool isShutdown_ {false};
std::string name {};
uint16_t channel {};
std::weak_ptr<MultiplexedSocket> endpoint {};
bool isInitiator_ {false};
const std::string name {};
const uint16_t channel {};
const std::weak_ptr<MultiplexedSocket> endpoint {};
const bool isInitiator_ {false};
std::function<void()> rmFromMxSockCb_;
bool isAnswered_ {false};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment