• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

Bandwidth

 
Ranch Hand
Posts: 170
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I need to measure the bandwidth of a certain TCP /IP . Is that possible please?
 
Saloon Keeper
Posts: 28311
207
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
YMMV.

Actually, the term "bandwidth" is rarely accurate for networking, since what most people really want to know is the data transfer rate, not the actual raw bits-per-second. Bandwidth is the physical upper limit on the transmission mechanisms, but data transfer rate varies with the network equipment, media conditions, and routing. Higher bandwidth generally equates to higher data transfer, but the actual relationship depends on how data is packaged, including the modulation techniques used.

In mobile devices this can vary considerably, since the primary networking channesl are radio based, via the phone systems and/or WiFi (and/or Bluetooth). These are systems which adjust their bandwidth based on the strength and noise levels of their underlying radio signals.
 
Tim Holloway
Saloon Keeper
Posts: 28311
207
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Oh, but in practical terms, you just stream data from the client to the server (and, if applicable, backwards as well). See how long it takes, and that's the effective data transfer rate for that particular hardware and conditions.
 
Watchya got in that poodle gun? Anything for me? Or this tiny ad?
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic