TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

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

1 pointsby chintan39about 9 years ago
A single character is 1 byte , but how many bytes are actually used for sending a single character? Assuming TCP is used

1 comment

maharishi1about 9 years ago
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<p>total size of TCP datagram with 1 char - 24 + 20 + 20 + 1 = 65 bytes
评论 #11648547 未加载