Live data from Hacker News

Ask HN: How much bandwidth is actually used for sending a single character?

news.ycombinator.com

1–3 of 3 posts

Re: Ask HN: How much bandwidth is actually used for sending a single character?

#2
Size of Ethernet frame - 24 Bytes Size of IPv4 Header (without any options) - 20 bytes Size of TCP Header (without any options) - 20 Bytes So total size of empty TCP datagram - 24 + 20 + 20 = 64 bytes

total size of TCP datagram with 1 char - 24 + 20 + 20 + 1 = 65 bytes

Re: Ask HN: How much bandwidth is actually used for sending a single character?

#3

Size of Ethernet frame - 24 Bytes Size of IPv4 Header (without any options) - 20 bytes Size of TCP Header (without any options) - 20 Bytes So total size of empty TCP datagram - 24 + 20 + 20 = 64 bytes total size of TCP datagram with 1 char - 24 + 20 + 20 + 1 = 65 bytes

But there would be more data right? ACK packets and all