/**************************************************************************** * apps/netutils/iperf/iperf_main.c * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The * ASF licenses this file to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. * ****************************************************************************/ /**************************************************************************** * Included Files ****************************************************************************/ #include #include #include #include #include "netutils/netlib.h" #include "argtable3.h" #include "iperf.h" /**************************************************************************** * Pre-processor Definitions ****************************************************************************/ #ifdef CONFIG_NETUTILS_IPERFTEST_DEVNAME # define DEVNAME CONFIG_NETUTILS_IPERFTEST_DEVNAME #else # define DEVNAME "wlan0" #endif #define IPERF_DEFAULT_PORT 5001 #define IPERF_DEFAULT_INTERVAL 3 #define IPERF_DEFAULT_TIME 30 /**************************************************************************** * Private Types ****************************************************************************/ struct wifi_iperf_t { struct arg_str *ip; struct arg_lit *server; struct arg_lit *udp; struct arg_int *port; struct arg_int *interval; struct arg_int *time; struct arg_lit *abort; struct arg_end *end; }; /**************************************************************************** * Private Functions ****************************************************************************/ /**************************************************************************** * Name: iperf_showusage * * Description: * Show usage of the demo program and exit * ****************************************************************************/ static void iperf_showusage(FAR const char *progname, int exitcode) { printf("USAGE: %s [-sua] [-c ] [-p ]\ [-i ] [-t