Searched refs:numPackets (Results 1 – 1 of 1) sorted by relevance
45 size_t numPackets; // number of packets to play, defaults to totalPackets - firstPacket variable282 numPackets = atoi(&arg[2]); in main()351 if (numPackets == 0) { in main()352 numPackets = totalPackets - firstPacket; in main()353 } else if (firstPacket + numPackets > totalPackets) { in main()354 fprintf(stderr, "-n%zu ignored\n", numPackets); in main()355 numPackets = totalPackets - firstPacket; in main()357 lastPacket = firstPacket + numPackets; in main()