-
Notifications
You must be signed in to change notification settings - Fork 22.9k
Correct packet description #41495
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
base: main
Are you sure you want to change the base?
Correct packet description #41495
Conversation
Preview URLs Flaws (1)URL:
(comment last updated: 2025-10-13 11:58:19) |
|
||
- They are sometimes dropped or corrupted, and when this happens, it's quicker and easier for the client to request the missing packets rather than an entire file. | ||
- The packets can be routed along different paths, making the transmission as efficient as possible and reducing the possibility of slowing down the network, especially when many users are requesting the same resource simultaneously. The packets may arrive out of sequence, but the client can use the information in the packet headers to make sure they are assembled in the correct order. | ||
- It is harder to steal user data when transmitted in packets, as each packet contains minimal data and is transmitted separately. |
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.
This seems unlikely to me. Hard to imagine an attack that steals one packet but not more.
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.
It seemed kinda unlikely to me as well, but I read quite a few packet definitions elsewhere that mentioned something along these lines.
I mean, it sounds vaguely plausible from the outset, but knowing what I know about how web security breaches occur, it probably isn't worth bringing up. I put it here in case anyone else had any thoughts. Happy to delete.
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.
Wondering if there's anyone else we can consult—@hamishwillee?
Description
The description of packets in How the web works is inaccurate. This PR aims to fix it.
Motivation
Additional details
Related issues and pull requests
Fixes #41479.