-
Notifications
You must be signed in to change notification settings - Fork 224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
disable accedental fec in iwp outbound messages #1194
disable accedental fec in iwp outbound messages #1194
Conversation
@@ -13,6 +13,7 @@ namespace llarp | |||
: m_Data{std::move(msg)} | |||
, m_MsgID{msgid} | |||
, m_Completed{handler} | |||
, m_LastFlush{now} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The net effect of this seems to be that we delay transmission. IIRC, this was even reflected in measurable latency in testing. Should we revisit this?
On Mon, Mar 30, 2020 at 07:18:08AM -0700, Stephen Shelton wrote:
@notlesh commented on this pull request.
> @@ -13,6 +13,7 @@ namespace llarp
: m_Data{std::move(msg)}
, m_MsgID{msgid}
, m_Completed{handler}
+ , m_LastFlush{now}
The net effect of this seems to be that we delay transmission. IIRC, this was even reflected in measurable latency in testing. Should we revisit this?
I believe that the later commits fixes this delay
…
--
You are receiving this because you authored the thread.
Reply to this email directly or view it on GitHub:
#1194 (review)
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me.
No description provided.