Explore >> Select a destination


You are here

internalpointers.com
| | sookocheff.com
1.9 parsecs away

Travel
| | The transmission control protocol (TCP) does one job very well - it creates an abstraction that makes an unreliable channel look like a reliable network. For applications built over an unreliable network like the Internet, TCP is a godsend that hides a lot of the inherent complexity in building networked applications. A laundry list of TCP features that application developers rely on every day includes: retransmission of lost data, in-order data delivery, data integrity, and congestion control. This arti...
| | unorde.red
2.2 parsecs away

Travel
| | [AI summary] This article provides a technical overview of the Transmission Control Protocol (TCP), explaining how it ensures reliable data transfer over an unreliable network using concepts like ports, sequence numbers, acknowledgments, and connection handshakes.
| | iosoft.blog
1.8 parsecs away

Travel
| | Transmission Control Protocol (TCP) is an important next step in the PioWi protocol stack; it opens the way to various network applications, such as the ubiquitous Web server. In this post I'll be introducing a fast Web server, that can be used for intensive data-transmission duties; in the next post it'll be used to implement...
| | www.cs.cornell.edu
17.7 parsecs away

Travel
| As a side project, I wrote a simple implementation of green threads for the Python programming language. The library is called Bluelet and it uses Python's native implementation of coroutines. Bluelet makes it easy to write concurrent socket programs without OS threads, multiple processes, or select()-and-dispatch loops.