-
Notifications
You must be signed in to change notification settings - Fork 17
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
Enabling 0-RTT feature #9
Comments
Which QUIC version are you setting? Take a look at the IsVersionSupported, there is a list of the supported versions for 0RTT (to be used as attribute "InitialVersion" of QuicSocketBase). |
Dear mychele, Thanks a million for your response. I think it is version 10. if (version == QUIC_VERSION || version == QUIC_VERSION_DRAFT_10 |
Do you mean that you set the attribute "InitialVersion" of QuicSocketBase to QUIC_VERSION_DRAFT_10? |
No I did not change the version. |
Do I need to change InitialVersion in quic-socket-base? |
yes
Il giorno mar 31 mar 2020 alle ore 15:29 Reza Poorzare <
[email protected]> ha scritto:
… Do I need to change InitialVersion in quic-socket-base?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#9 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABWVXZK7U33HKTZUQAW6HI3RKJACBANCNFSM4LV7FIFQ>
.
--
Michele Polese
Research Scientist
Institute for the Wireless Internet of Things
Northeastern University, Boston, MA
email: [email protected]
web: polese.io - mmwave.dei.unipd.it
|
As it was in the paper "A QUIC Implementation for ns-3": |
Please try with QUIC_VERSION_NS3_IMPL
Il giorno mar 31 mar 2020 alle ore 17:20 Reza Poorzare <
[email protected]> ha scritto:
… As it was in the paper "A QUIC Implementation for ns-3":
"in this paper we present a native implementation of QUIC for ns-3, which
is compliant with version 13 of the IETF QUIC draft"
I have changed it to 13 but it is not working again. I think my initial
version is wrong, isn't it? 13 is not the correct one?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#9 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABWVXZMDHWWDTINFU64BQULRKJNBPANCNFSM4LV7FIFQ>
.
--
Michele Polese
Research Scientist
Institute for the Wireless Internet of Things
Northeastern University, Boston, MA
email: [email protected]
web: polese.io - mmwave.dei.unipd.it
|
You mean 0xf1f1f1f1? |
Hi there,
I am trying to enable 0-RTT feature of QUIC and I am using this command:
Config::SetDefault ("ns3::QuicL4Protocol::0RTT-Handshake", BooleanValue (true));
However, I get this error:
aborted. cond="!IsVersionSupported (m_vers)", msg="0RTT Handshake requested with wrong Initial Version", file=../src/quic/model/quic-socket-base.cc, line=2530
terminate called without an active exception
Could anyone please help me to solve this problem?
Thanks
The text was updated successfully, but these errors were encountered: