/* NETWOX Network toolbox Copyright(c) 1999-2006 Laurent Constantin ----- Main server : http://www.laurentconstantin.com/ Backup servers : http://go.to/laurentconstantin/ http://laurentconstantin.est-la.com/ http://laurentconstantin.free.fr/ http://membres.lycos.fr/lauconstantin/ [my current email address is on the web servers] ----- This file is part of Netwox. Netwox is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. Netwox is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details (http://www.gnu.org/). ------------------------------------------------------------------------ */ /*-------------------------------------------------------------*/ #include "../netwox.h" /*-------------------------------------------------------------*/ netwib_conststring t000158_description[] = { "This tool connects on tool 157. It permits to measure throughput and", "jitter for UDP. So, tool 157 is ran on one computer, and tool 158 on", "another.", "", NETWOX_DESC_perf_chunkdur, NETWOX_DESC_client, NETWOX_DESC_toolpriv_none, NULL }; netwox_toolarg t000158_args[] = { NETWOX_SOCK_ARG_UDP_CLI, NETWOX_TOOLARG_OPTA_UINT32('s', "chunksize", "chunk size", "500"), NETWOX_TOOLARG_OPTA_UINT32('u', "duration", "test duration in ms", "5000"), NETWOX_TOOLARG_END }; netwox_tooltreenodetype t000158_nodes[] = { NETWOX_TOOLTREENODETYPE_CLIENT_UDP_GENERIC, NETWOX_TOOLTREENODETYPE_END }; netwox_tool_info t000158_info = { "Network performance measurement : UDP client", t000158_description, "iperf", t000158_args, t000158_nodes, }; /*-------------------------------------------------------------*/ netwib_err t000158_core(int argc, char *argv[]) { netwox_arg *parg; netwox_sockinfo sockinfo; netwox_perfinfo perfinfo; netwib_err ret; /* obtain parameters */ netwib_er(netwox_arg_init(argc, argv, &t000158_info, &parg)); netwib_er(netwox_sockinfo_init_arg_udp_cli(parg, &sockinfo)); netwib_er(netwox_arg_uint32(parg, 's', &perfinfo.size)); netwib_er(netwox_arg_uint32(parg, 'u', &perfinfo.durationms)); /* main loop */ netwib_er(netwox_sock_init(&sockinfo, &perfinfo.pio)); ret = netwox_perf_cli(&perfinfo); /* close */ netwib_er(netwib_io_close(&perfinfo.pio)); netwib_er(netwox_sockinfo_close(&sockinfo)); netwib_er(netwox_arg_close(&parg)); return(ret); }