Skip to main content
Transmission Control Protocol

Transmission Control Protocol

Internet protocolWikipedia

Search complete. 133 mentions across 57 episodes found for "Transmission Control Protocol".

Sep 10, 2026

BSD Now

BSD Now

680: What FS?

Sep 10 · 2 Mentions

Top 40%
Tom JonesHOST
16:07
Oh, I have no capital I, as we know it in the '70s and '80s.
Tom JonesHOST
16:10
As Vint Cerf and others developed TCP/IP, but other protocols were standardized, so in theory internet hosts could exchange data, programming interfaces were awkward and unstandardized.
Tom JonesHOST
16:18
ARPA renamed...
Tom JonesHOST
16:22
Ar- Sorry.
Tom JonesHOST
18:47
On Unix, everything is a file apart from the things which aren't.
Ruben ShadeHOST
18:50
Mm-hmm.
Tom JonesHOST
18:50
The programmer specifies what protocol they want to use, TCP, UDP, et cetera, plus a couple of other arguments delineating the type of communication.
Tom JonesHOST
18:58
Like a call creating a file, a call creates a network socket, returns a simple integer that represents a network connection.
speaker_1HOST
22:31
It's so clever.
speaker_1HOST
22:32
And to capture the broader network picture, like not just the specific HTTP traffic, but all the raw data packets flying back and forth, you rely on tools like Wireshark, TCP dump and Charles proxy.
speaker_2HOST
22:45
Yeah, they record everything on the wire.
speaker_2HOST
22:46
So you have a permanent forensic record of the exact sequence of communication.
Eric SestariGUEST
28:31
So I was doing and creating this Bolt8 code, which is basically a noise protocol.
Eric SestariGUEST
28:40
And when I started doing it, I started to point out some nodes and i was still testing locally so i made like some docker and using some containers to connect to those nodes and started sending like a lot of ping messages without reading from tcp connection so normal people would not do that because they went to send messages and like have the exchange of the needs message which is the first message on the lights network which you need to exchange to to announce feature bits and i started sending a lot of those ping messages and not reading nothing from the TCP connection.
Eric SestariGUEST
29:23
So the peers on the other side need to somehow stop reading our message or drop the Pong message.
Eric SestariGUEST
29:32
So I tested it with Core Lightning, LND, and all the Lightning nodes.
Eric SestariGUEST
30:54
And when the connection receives the ping message, for example, it needs to send a pong to that peer.
Eric SestariGUEST
31:03
But with the pong message, it didn't stop reading the connections.
Eric SestariGUEST
31:08
So it would try to send the message, put in the outgoing kill, and continue reading from the TCP connection.
Eric SestariGUEST
31:18
So it started like... uh pushing message adding message to a queue and not being able to send because the peer is not reading the message and starting like uh increasing the memory usage because it's not like being able to send any message and and free the queue so it would it would die by a autistic memory
Corey QuinnHOST
17:16
Yes.
Corey QuinnHOST
17:17
One other bit of magic in here that I talk to folks, even folks who have networking backgrounds there, right, you look at the typical, you start inspecting the traffic that's going over the wire, you look and you see the physical, the back address on the physical layer, layer two, you look at the IP logic around layer three, you look at TCP and all the stuff that's being built in as those things happen, the entire network that you see as a customer is fake.
Corey QuinnHOST
17:41
It is an emulated, virtualized imagining of a network designed to look like networks looked 25 years ago, and it is entirely living on top of what the reality actually is.
Corey QuinnHOST
17:54
And that is wildly exciting.
Corey QuinnHOST
19:42
There were a bunch of early things that came out like, oh, Apple Talk, sure, great, IPX, ISPX, that, yeah.
Corey QuinnHOST
19:51
Things that I don't even remember because they did not win.
Corey QuinnHOST
19:53
TCP on top of IP did.
Matt RehderGUEST
19:56
Very durable.
Artificial IntelligenceNARRATOR
5:51
CyberPanel opens most of what it needs, but verify because a silently closed port looks identical to a broken service.
Artificial IntelligenceNARRATOR
5:58
Port protocol, what it is for 22/TCP SSH 80, 443/TCP HTTP and HTTPS Also needed for Let's Encrypt validation eight thousand and ninety TCP the CyberPanel interface two five TCP SMTP, server to server mail.
Artificial IntelligenceNARRATOR
6:16
This is the one providers block five eight seven TCP submission, what your mail client uses to send four six five TCP SMTPS, older implicit TLS submission, still widely used one hundred and forty-three.
Artificial IntelligenceNARRATOR
6:29
Nine nine three TCP IMAP and IMAP over TLS one hundred and ten.
Jerry BellHOST
4:04
An Android Trojan hides its payload in the app package, then scans for debug ports left open and installs itself on whatever answers.
Jerry BellHOST
4:13
Turn off ADB over TCP on your managed Android fleet.
Jerry BellHOST
4:17
Fifteen.
Jerry BellHOST
4:18
Where the UEFI shell ships inside Flash, an administrator who can change the boot order can start it and use its memory write commands to turn off the checks secure boot relies on.
Mike BelsheGUEST
46:55
Now we have all these protocols now with crypto, Ethereum and Solana, et cetera.
Mike BelsheGUEST
47:01
But at the networking programming level, You know, TCP has been around since 1970, very incremental changes, a big update, small update, but big update in the early 90s.
Mike BelsheGUEST
47:12
The web had not changed for 15 years at this point in time, which is around 2010.
Mike BelsheGUEST
47:17
So it was really pretty easy.
Natalie BrunellHOST
48:37
That's exciting.
Natalie BrunellHOST
48:38
And I will say, just as a note to my viewers and listeners, a couple of years ago, what you just said would have been foreign language to me.
Natalie BrunellHOST
48:46
And it was only because of Bitcoin that I learned about protocols, that I learned what TCPIP is.
Natalie BrunellHOST
48:51
If you want to know, if some of this sounded like, I don't know what he just said, please get my book.
speaker_5GUEST
8:50
So the ad pay forward directive tells the ADB daemon to create a socket connection.
speaker_5GUEST
8:55
By specifying TCP.31415 as the first argument, you're opening port 31415 on your local computer's loopback interface.
speaker_5GUEST
9:04
Got it.
speaker_5GUEST
9:05
Then the second TCP.31415 tells ADB to take any traffic it receives on that local port, shove it through the USB or virtual connection, and spit it out on port 31415 inside the emulator's network stack.
speaker_4HOST
9:18
Now, technically, depending on your shell environment, I know you can sometimes omit the TCP protocol declaration.
speaker_5GUEST
9:23
You can, yeah.
Micah CziganGUEST
61:26
No.
Micah CziganGUEST
61:29
No, it was just a simple TCP packet going out.
Micah CziganGUEST
61:34
So it definitely wasn't just fire and forget.
Micah CziganGUEST
61:37
It was very targeted.
BaluHOST
19:10
It does improve global performance by routing traffic over the AWS backbone to the optimal endpoint, but it does not cache content.
BaluHOST
19:17
It's best for non-cacheable traffic like TCP or UDP workloads and APIs where you want the fast backbone path.
BaluHOST
19:25
When the requirement specifically says cache content at the edge, that's CloudFront, not Global Accelerator.
BaluHOST
19:31
The keyword that decides this is cache content at edge locations.

47 more episodes mention Transmission Control Protocol.

Create an account to see the whole feed, search across every transcript, and follow the entities you care about.

We value your privacy

We use cookies to understand how you use our platform and to improve your experience. Click “Accept All” to consent, or “Decline non-essential” to opt out of non-essential cookies. Read our Privacy Policy.