Hi,
I have met the problem when doing the iperf udp test. The iperf test will
stop after a long time running.
In the code, it seems the packetID increases for each packet, and
eventually it will overflow and becomes a negative value, so that the iperf
server will exit. Is this the problem?

client:
        if ( isUDP( mSettings ) ) {
            // store datagram ID into buffer
            mBuf_UDP->id      = htonl( (reportstruct->packetID)++ );
            mBuf_UDP->tv_sec  = htonl( reportstruct->packetTime.tv_sec );
            mBuf_UDP->tv_usec = htonl( reportstruct->packetTime.tv_usec );

server:
            if ( reportstruct->packetID < 0 ) {
                reportstruct->packetID = -reportstruct->packetID;
                currLen = -1;
            }


Thanks,
Yu Xu
------------------------------------------------------------------------------
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk
_______________________________________________
Iperf-users mailing list
Iperf-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/iperf-users

Reply via email to