diff --git a/broker/gen/model/Tcp_settings.cpp b/broker/gen/model/Tcp_settings.cpp
index ef632894..391cfb4c 100644
--- a/broker/gen/model/Tcp_settings.cpp
+++ b/broker/gen/model/Tcp_settings.cpp
@@ -31,7 +31,7 @@ Tcp_settings::Tcp_settings()
m_Peer_liveness_timeout_msIsSet = false;
m_Max_backpressure_timeout_ms = 0L;
m_Max_backpressure_timeout_msIsSet = false;
-
+
}
void Tcp_settings::validate() const
@@ -72,7 +72,7 @@ bool Tcp_settings::validate(std::stringstream& msg, const std::string& pathPrefi
}
}
-
+
return success;
}
@@ -89,13 +89,13 @@ bool Tcp_settings::operator==(const Tcp_settings& rhs) const
((!nwritersIsSet() && !rhs.nwritersIsSet()) || (nwritersIsSet() && rhs.nwritersIsSet() && getNwriters() == rhs.getNwriters())) &&
-
-
+
+
((!peerLivenessTimeoutMsIsSet() && !rhs.peerLivenessTimeoutMsIsSet()) || (peerLivenessTimeoutMsIsSet() && rhs.peerLivenessTimeoutMsIsSet() && getPeerLivenessTimeoutMs() == rhs.getPeerLivenessTimeoutMs())) &&
-
-
+
+
((!maxBackpressureTimeoutMsIsSet() && !rhs.maxBackpressureTimeoutMsIsSet()) || (maxBackpressureTimeoutMsIsSet() && rhs.maxBackpressureTimeoutMsIsSet() && getMaxBackpressureTimeoutMs() == rhs.getMaxBackpressureTimeoutMs()))
-
+
;
}
@@ -117,7 +117,7 @@ void to_json(nlohmann::json& j, const Tcp_settings& o)
j["peer_liveness_timeout_ms"] = o.m_Peer_liveness_timeout_ms;
if(o.maxBackpressureTimeoutMsIsSet())
j["max_backpressure_timeout_ms"] = o.m_Max_backpressure_timeout_ms;
-
+
}
void from_json(const nlohmann::json& j, Tcp_settings& o)
@@ -136,18 +136,18 @@ void from_json(const nlohmann::json& j, Tcp_settings& o)
{
j.at("nwriters").get_to(o.m_Nwriters);
o.m_NwritersIsSet = true;
- }
+ }
if(j.find("peer_liveness_timeout_ms") != j.end())
{
j.at("peer_liveness_timeout_ms").get_to(o.m_Peer_liveness_timeout_ms);
o.m_Peer_liveness_timeout_msIsSet = true;
- }
+ }
if(j.find("max_backpressure_timeout_ms") != j.end())
{
j.at("max_backpressure_timeout_ms").get_to(o.m_Max_backpressure_timeout_ms);
o.m_Max_backpressure_timeout_msIsSet = true;
- }
-
+ }
+
}
int64_t Tcp_settings::getSendBufferSize() const
diff --git a/broker/gen/model/Tcp_settings.h b/broker/gen/model/Tcp_settings.h
index 61144d44..d323c3bd 100644
--- a/broker/gen/model/Tcp_settings.h
+++ b/broker/gen/model/Tcp_settings.h
@@ -80,14 +80,14 @@ public:
bool nwritersIsSet() const;
void unsetNwriters();
///