We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cb43ee commit 69f9ee5Copy full SHA for 69f9ee5
mclagsyncd/mclaglink.h
@@ -189,9 +189,10 @@ namespace swss {
189
typedef std::tuple<std::string, std::string> vlan_mbr;
190
191
class MclagLink : public Selectable {
192
-
+
193
private:
194
- Select *m_select;
+ const int MSG_BATCH_SIZE;
195
196
unsigned int m_bufSize;
197
char *m_messageBuffer;
198
char *m_messageBuffer_send;
@@ -202,11 +203,12 @@ namespace swss {
202
203
int m_server_socket;
204
int m_connection_socket;
205
206
+ Select *m_select;
207
208
bool is_iccp_up = false;
209
std::string m_system_mac;
210
std::set<vlan_mbr> m_vlan_mbrship; //set of vlan,mbr tuples
211
- const int MSG_BATCH_SIZE;
212
std::map<std::string, std:: string> *p_learn;
213
214
unique_ptr<DBConnector> p_state_db;
0 commit comments