Skip to content
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

Define requirements for handling packets #724

Merged
merged 10 commits into from Oct 13, 2017
9 changes: 4 additions & 5 deletions draft-ietf-quic-transport.md
Expand Up @@ -910,11 +910,10 @@ diagnostic or security purposes.
For servers, packets that aren't associated with a connection potentially create
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: What about "aren't associated with an existing connection"

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was trying to save words here. I figured that this was used enough to be implicit by now.

a new connection. However, only packets that use the long packet header and
that are at least the minimum size defined for the protocol version can be
initial packets. Unless the server is buffering 0-RTT packets, a server MAY
discard packets with a short header or packets that are smaller than the
smallest minimum size for any version that the server supports. A server that
discards a packet that cannot be associated with a connection MAY also generate
a stateless reset ({{stateless-reset}}).
initial packets. A server MAY discard packets with a short header or packets
that are smaller than the smallest minimum size for any version that the server
supports. A server that discards a packet that cannot be associated with a
connection MAY also generate a stateless reset ({{stateless-reset}}).

This version of QUIC defines a minimum size for initial packets of 1200 octets
(see {{packetization}}). Versions of QUIC that define smaller minimum initial
Expand Down