Web Development
netperf.txt
Associated article: Measuring Network Software Performance
Tags: Web Development Tools Parallel
Published source code accompanying the article by James K. Yun in which he examines the network performance measurement techniques that especially useful in projects where the network interface is encapsulated in a class library or network middleware. Also see NETPERF.ZIP.
Measuring Network Software Performance
by James K. Yun
Listing One
/* the sending (netperf) side of the TCP_RR test. */
void
send_tcp_rr(remote_host)
char remote_host[];
{
. . .
/* Set-up the test end conditions. For a request/response test, they */
/* can ...


