|
|
|
|
|
by devwastaken
1597 days ago
|
|
Is there a resource that delves heavy into the application of the OSI model? Specifically, on how tcp actually works under the hood. Or how applications impliment their netcode ontop of udp? Typically we'd just say recv() and get data, but that doesn't detail the underlying process of how packets are handled. |
|
Regardless knowing the layering model to the letter tells you very little about how TCP works for instance. After all that's the reason for layers, you don't need to know how the protocol does it's thing just where it fits in the stack and what happens between the boundaries (which in the TCP model is "not much"). The other commenters suggestion of Stevens book has been the traditional recommendation though I will say it hasn't sat idle since then and you !ay want to follow it up with some more recent resources to get a complete picture of modern TCP extras.
For the UDP one also look into the design of QUIC for ideas in that space.