2018-12-03 04:39:13 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Copyright (C) Microsoft. All rights reserved.
|
|
|
|
// Licensed under the MIT license.
|
|
|
|
// See LICENSE.txt file in the project root for full license information.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"runtime"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
const defaultLogFileName = "./ethrs.log for server, ./ethrc.log for client"
|
2019-01-30 20:38:03 +08:00
|
|
|
var gVersion string
|
2018-12-03 04:39:13 +08:00
|
|
|
|
2019-01-17 00:12:58 +08:00
|
|
|
func printFlagUsage(flag, info string, helptext ...string) {
|
|
|
|
fmt.Printf("\t-%s %s\n", flag, info)
|
|
|
|
for _, help := range helptext {
|
|
|
|
fmt.Printf("\t\t%s\n", help)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func printServerUsage() {
|
|
|
|
printFlagUsage("s", "", "Run in server mode.")
|
|
|
|
}
|
|
|
|
|
|
|
|
func printClientUsage() {
|
|
|
|
printFlagUsage("c", "<server>", "Run in client mode and connect to <server>.",
|
|
|
|
"Server is specified using name, FQDN or IP address.")
|
|
|
|
}
|
|
|
|
|
|
|
|
func printExtClientUsage() {
|
|
|
|
printFlagUsage("c", "<destination>", "Run in external client mode and connect to <destination>.",
|
|
|
|
"<destination> is specified using host:port format.",
|
|
|
|
"Example: www.microsoft.com:443 or 10.1.0.4:22 etc.")
|
|
|
|
}
|
|
|
|
|
|
|
|
func printPortUsage() {
|
|
|
|
printFlagUsage("ports", "<k=v,...>", "Use custom port numbers instead of default ones.",
|
|
|
|
"A comma separated list of key=value pair is used.",
|
|
|
|
"Key specifies the protocol, and value specifies base port.",
|
|
|
|
"Ports used for various tests are calculated from base port.",
|
|
|
|
"Example: For TCP, Bw: 9999, CPS: 9998, PPS: 9997, Latency: 9996",
|
|
|
|
"Control is used for control channel communication for ethr.",
|
|
|
|
"Note: Same configuration must be used on both client & server.",
|
|
|
|
"Default: 'control=8888,tcp=9999,udp=9999,http=9899,https=9799'")
|
|
|
|
}
|
|
|
|
|
|
|
|
func printExtPortUsage() {
|
|
|
|
printFlagUsage("ports", "<k=v,...>", "Use custom port numbers instead of default ones.",
|
|
|
|
"A comma separated list of key=value pair is used.",
|
|
|
|
"Key specifies the protocol, and value specifies the port.",
|
|
|
|
"Default: 'tcp=9999,http=9899,https=9799'")
|
|
|
|
}
|
|
|
|
|
|
|
|
func printTestType() {
|
|
|
|
printFlagUsage("t", "<test>", "Test to run (\"b\", \"c\", \"p\", or \"l\")",
|
|
|
|
"b: Bandwidth",
|
|
|
|
"c: Connections/s or Requests/s",
|
|
|
|
"p: Packets/s",
|
|
|
|
"l: Latency, Loss & Jitter",
|
|
|
|
"Default: b - Bandwidth measurement.")
|
|
|
|
}
|
|
|
|
|
|
|
|
func printExtTestType() {
|
|
|
|
printFlagUsage("t", "<test>", "Test to run (\"b\", \"c\", or \"cl\")",
|
|
|
|
"b: Bandwidth",
|
|
|
|
"c: Connections/s or Requests/s",
|
|
|
|
"cl: TCP connection setup latency",
|
|
|
|
"Default: b - Bandwidth measurement.")
|
|
|
|
}
|
|
|
|
|
|
|
|
func printThreadUsage() {
|
2019-01-21 01:13:47 +08:00
|
|
|
printFlagUsage("n", "<number>", "Number of Parallel Sessions (and Threads).",
|
2019-01-17 00:12:58 +08:00
|
|
|
"0: Equal to number of CPUs",
|
|
|
|
"Default: 1")
|
|
|
|
}
|
|
|
|
|
|
|
|
func printDurationUsage() {
|
|
|
|
printFlagUsage("d", "<duration>",
|
|
|
|
"Duration for the test (format: <num>[ms | s | m | h]",
|
|
|
|
"0: Run forever",
|
|
|
|
"Default: 10s")
|
|
|
|
}
|
|
|
|
|
|
|
|
func printGapUsage() {
|
|
|
|
printFlagUsage("g", "<gap>",
|
|
|
|
"Time interval between successive measurements (format: <num>[ms | s | m | h]",
|
|
|
|
"0: No gap",
|
|
|
|
"Default: 1s")
|
|
|
|
}
|
|
|
|
|
|
|
|
func printBufLenUsage() {
|
|
|
|
printFlagUsage("l", "<length>",
|
|
|
|
"Length of buffer to use (format: <num>[KB | MB | GB])",
|
|
|
|
"Only valid for Bandwidth tests. Max 1GB.",
|
|
|
|
"Default: 16KB")
|
|
|
|
}
|
|
|
|
|
|
|
|
func printProtocolUsage() {
|
|
|
|
printFlagUsage("p", "<protocol>",
|
|
|
|
"Protocol (\"tcp\", \"udp\", \"http\", \"https\", or \"icmp\")",
|
|
|
|
"Default: tcp")
|
|
|
|
}
|
|
|
|
|
|
|
|
func printExtProtocolUsage() {
|
|
|
|
printFlagUsage("p", "<protocol>",
|
|
|
|
"Protocol (\"tcp\", \"http\", \"https\", or \"icmp\")",
|
|
|
|
"Default: tcp")
|
|
|
|
}
|
|
|
|
|
|
|
|
func printIterationUsage() {
|
|
|
|
printFlagUsage("i", "<iterations>",
|
|
|
|
"Number of round trip iterations for each latency measurement.",
|
|
|
|
"Default: 1000")
|
|
|
|
}
|
|
|
|
|
|
|
|
func printModeUsage() {
|
|
|
|
printFlagUsage("m", "<mode>",
|
|
|
|
"'-m x' MUST be specified for external mode.")
|
|
|
|
}
|
|
|
|
|
2019-01-21 01:13:47 +08:00
|
|
|
func printNoConnStatUsage() {
|
|
|
|
printFlagUsage("ncs", "",
|
|
|
|
"No Connection Stats would be printed if this flag is specified.",
|
|
|
|
"This is useful for running with large number of connections as",
|
|
|
|
"specified by -n option.")
|
|
|
|
}
|
|
|
|
|
2019-01-17 00:12:58 +08:00
|
|
|
func ethrUsage() {
|
2019-01-30 20:38:03 +08:00
|
|
|
fmt.Println("\nEthr - A comprehensive network performance measurement tool.")
|
|
|
|
fmt.Println("Version: " + gVersion)
|
|
|
|
fmt.Println("It supports 4 modes. Usage of each mode is described below:")
|
2019-01-17 00:12:58 +08:00
|
|
|
|
|
|
|
fmt.Println("\nCommon Parameters")
|
|
|
|
fmt.Println("================================================================================")
|
|
|
|
printFlagUsage("h", "", "Help")
|
|
|
|
printFlagUsage("no", "", "Disable logging to file. Logging to file is enabled by default.")
|
|
|
|
printFlagUsage("o", "<filename>", "Name of log file. By default, following file names are used:",
|
|
|
|
"Server mode: 'ethrs.log'",
|
|
|
|
"Client mode: 'ethrc.log'",
|
|
|
|
"External server mode: 'ethrxs.log'",
|
|
|
|
"External client mode: 'ethrxc.log'")
|
|
|
|
printFlagUsage("debug", "", "Enable debug information in logging output.")
|
|
|
|
printFlagUsage("4", "", "Use only IP v4 version")
|
|
|
|
printFlagUsage("6", "", "Use only IP v6 version")
|
|
|
|
|
|
|
|
fmt.Println("\nMode: Server")
|
|
|
|
fmt.Println("================================================================================")
|
|
|
|
printServerUsage()
|
|
|
|
printFlagUsage("ui", "", "Show output in text UI.")
|
|
|
|
printPortUsage()
|
|
|
|
|
|
|
|
fmt.Println("\nMode: Client")
|
|
|
|
fmt.Println("================================================================================")
|
|
|
|
printClientUsage()
|
2019-01-21 01:13:47 +08:00
|
|
|
printFlagUsage("r", "", "For Bandwidth tests, send data from server to client.")
|
2019-01-17 00:12:58 +08:00
|
|
|
printDurationUsage()
|
|
|
|
printThreadUsage()
|
2019-01-21 01:13:47 +08:00
|
|
|
printNoConnStatUsage()
|
2019-01-17 00:12:58 +08:00
|
|
|
printBufLenUsage()
|
|
|
|
printProtocolUsage()
|
|
|
|
printPortUsage()
|
|
|
|
printTestType()
|
|
|
|
printIterationUsage()
|
|
|
|
|
|
|
|
fmt.Println("\nMode: External Server")
|
|
|
|
fmt.Println("================================================================================")
|
|
|
|
printModeUsage()
|
|
|
|
printServerUsage()
|
|
|
|
printExtPortUsage()
|
|
|
|
|
|
|
|
fmt.Println("\nMode: External Client")
|
|
|
|
fmt.Println("================================================================================")
|
|
|
|
printModeUsage()
|
|
|
|
printExtClientUsage()
|
|
|
|
printDurationUsage()
|
|
|
|
printThreadUsage()
|
2019-01-21 01:13:47 +08:00
|
|
|
printNoConnStatUsage()
|
2019-01-17 00:12:58 +08:00
|
|
|
printBufLenUsage()
|
|
|
|
printExtProtocolUsage()
|
|
|
|
printExtTestType()
|
|
|
|
printGapUsage()
|
|
|
|
}
|
|
|
|
|
2018-12-03 04:39:13 +08:00
|
|
|
func main() {
|
2019-01-30 20:38:03 +08:00
|
|
|
//
|
|
|
|
// If version is not set via ldflags, then default to UNKNOWN
|
|
|
|
//
|
|
|
|
if gVersion == "" {
|
|
|
|
gVersion = "[VERSION: UNKNOWN]"
|
|
|
|
}
|
2019-01-21 01:13:47 +08:00
|
|
|
//
|
|
|
|
// Set GOMAXPROCS to 1024 as running large number of goroutines in a loop
|
|
|
|
// to send network traffic results in timer starvation, as well as unfair
|
|
|
|
// processing time across goroutines resulting in starvation of many TCP
|
|
|
|
// connections. Using a higher number of threads via GOMAXPROCS solves this
|
|
|
|
// problem.
|
|
|
|
//
|
|
|
|
runtime.GOMAXPROCS(1024)
|
|
|
|
|
2019-01-17 00:12:58 +08:00
|
|
|
flag.Usage = ethrUsage
|
|
|
|
isServer := flag.Bool("s", false, "")
|
|
|
|
clientDest := flag.String("c", "", "")
|
|
|
|
testTypePtr := flag.String("t", "", "")
|
|
|
|
thCount := flag.Int("n", 1, "")
|
|
|
|
bufLenStr := flag.String("l", "16KB", "")
|
|
|
|
protocol := flag.String("p", "tcp", "")
|
|
|
|
outputFile := flag.String("o", defaultLogFileName, "")
|
|
|
|
debug := flag.Bool("debug", false, "")
|
|
|
|
noOutput := flag.Bool("no", false, "")
|
|
|
|
duration := flag.Duration("d", 10*time.Second, "")
|
|
|
|
showUI := flag.Bool("ui", false, "")
|
|
|
|
rttCount := flag.Int("i", 1000, "")
|
|
|
|
portStr := flag.String("ports", "", "")
|
|
|
|
modeStr := flag.String("m", "", "")
|
|
|
|
use4 := flag.Bool("4", false, "")
|
|
|
|
use6 := flag.Bool("6", false, "")
|
|
|
|
gap := flag.Duration("g", 0, "")
|
2019-01-21 01:13:47 +08:00
|
|
|
reverse := flag.Bool("r", false, "")
|
|
|
|
ncs := flag.Bool("ncs", false, "")
|
2018-12-03 04:39:13 +08:00
|
|
|
|
|
|
|
flag.Parse()
|
|
|
|
|
|
|
|
//
|
|
|
|
// TODO: Handle the case if there are incorrect arguments
|
|
|
|
// fmt.Println("Number of incorrect arguments: " + strconv.Itoa(flag.NArg()))
|
|
|
|
//
|
|
|
|
|
2019-01-21 01:13:47 +08:00
|
|
|
//
|
|
|
|
// Only used in client mode, to control whether to display per connection
|
|
|
|
// statistics or not.
|
|
|
|
//
|
|
|
|
noConnectionStats = *ncs
|
|
|
|
|
2019-01-15 05:56:36 +08:00
|
|
|
xMode := false
|
|
|
|
switch *modeStr {
|
|
|
|
case "":
|
|
|
|
case "x":
|
|
|
|
xMode = true
|
|
|
|
default:
|
|
|
|
printUsageError("Invalid value for execution mode (-m).")
|
|
|
|
}
|
2019-01-02 13:12:26 +08:00
|
|
|
mode := ethrModeInv
|
2019-01-15 05:56:36 +08:00
|
|
|
|
2019-01-02 13:12:26 +08:00
|
|
|
if *isServer {
|
2019-01-15 05:56:36 +08:00
|
|
|
if *clientDest != "" {
|
|
|
|
printUsageError("Invalid arguments, \"-c\" cannot be used with \"-s\".")
|
|
|
|
}
|
|
|
|
if xMode {
|
|
|
|
mode = ethrModeExtServer
|
|
|
|
} else {
|
|
|
|
mode = ethrModeServer
|
2019-01-02 13:12:26 +08:00
|
|
|
}
|
|
|
|
} else if *clientDest != "" {
|
2019-01-15 05:56:36 +08:00
|
|
|
if xMode {
|
|
|
|
mode = ethrModeExtClient
|
|
|
|
} else {
|
|
|
|
mode = ethrModeClient
|
2019-01-02 13:12:26 +08:00
|
|
|
}
|
|
|
|
} else {
|
2019-01-15 05:56:36 +08:00
|
|
|
printUsageError("Invalid arguments, use either \"-s\" or \"-c\".")
|
2018-12-03 04:39:13 +08:00
|
|
|
}
|
|
|
|
|
2019-01-21 01:13:47 +08:00
|
|
|
if *reverse && mode != ethrModeClient {
|
|
|
|
printUsageError("Invalid arguments, \"-r\" can only be used in client mode.")
|
|
|
|
}
|
|
|
|
|
2019-01-04 09:25:00 +08:00
|
|
|
if *use4 && !*use6 {
|
|
|
|
ipVer = ethrIPv4
|
|
|
|
} else if *use6 && !*use4 {
|
|
|
|
ipVer = ethrIPv6
|
|
|
|
}
|
|
|
|
|
2018-12-03 04:39:13 +08:00
|
|
|
bufLen := unitToNumber(*bufLenStr)
|
|
|
|
if bufLen == 0 {
|
2019-01-21 01:13:47 +08:00
|
|
|
printUsageError(fmt.Sprintf("Invalid length specified: %s" + *bufLenStr))
|
2018-12-03 04:39:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if *rttCount <= 0 {
|
2019-01-21 01:13:47 +08:00
|
|
|
printUsageError(fmt.Sprintf("Invalid RTT count for latency test: %d", *rttCount))
|
2018-12-03 04:39:13 +08:00
|
|
|
}
|
|
|
|
|
2018-12-12 00:35:20 +08:00
|
|
|
var testType EthrTestType
|
|
|
|
switch *testTypePtr {
|
2019-01-02 13:12:26 +08:00
|
|
|
case "":
|
|
|
|
switch mode {
|
|
|
|
case ethrModeServer:
|
|
|
|
testType = All
|
2019-01-15 05:56:36 +08:00
|
|
|
case ethrModeExtServer:
|
|
|
|
testType = All
|
2019-01-02 13:12:26 +08:00
|
|
|
case ethrModeClient:
|
|
|
|
testType = Bandwidth
|
|
|
|
case ethrModeExtClient:
|
2019-01-15 05:56:36 +08:00
|
|
|
testType = Bandwidth
|
2019-01-02 13:12:26 +08:00
|
|
|
}
|
2018-12-03 04:39:13 +08:00
|
|
|
case "b":
|
2018-12-12 00:35:20 +08:00
|
|
|
testType = Bandwidth
|
2018-12-03 04:39:13 +08:00
|
|
|
case "c":
|
2018-12-12 00:35:20 +08:00
|
|
|
testType = Cps
|
2018-12-03 04:39:13 +08:00
|
|
|
case "p":
|
2018-12-12 00:35:20 +08:00
|
|
|
testType = Pps
|
2018-12-03 04:39:13 +08:00
|
|
|
case "l":
|
2018-12-12 00:35:20 +08:00
|
|
|
testType = Latency
|
2019-01-15 05:56:36 +08:00
|
|
|
case "cl":
|
|
|
|
testType = ConnLatency
|
2018-12-03 04:39:13 +08:00
|
|
|
default:
|
2019-01-15 05:56:36 +08:00
|
|
|
printUsageError(fmt.Sprintf("Invalid value \"%s\" specified for parameter \"-t\".\n"+
|
|
|
|
"Valid parameters and values are:\n", *testTypePtr))
|
2018-12-03 04:39:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
p := strings.ToUpper(*protocol)
|
2018-12-11 23:28:33 +08:00
|
|
|
proto := TCP
|
2018-12-03 04:39:13 +08:00
|
|
|
switch p {
|
|
|
|
case "TCP":
|
2018-12-11 23:28:33 +08:00
|
|
|
proto = TCP
|
2018-12-03 04:39:13 +08:00
|
|
|
case "UDP":
|
2018-12-11 23:28:33 +08:00
|
|
|
proto = UDP
|
2018-12-03 04:39:13 +08:00
|
|
|
case "HTTP":
|
2018-12-11 23:28:33 +08:00
|
|
|
proto = HTTP
|
2018-12-03 04:39:13 +08:00
|
|
|
case "HTTPS":
|
2018-12-11 23:28:33 +08:00
|
|
|
proto = HTTPS
|
2018-12-03 04:39:13 +08:00
|
|
|
case "ICMP":
|
2018-12-11 23:28:33 +08:00
|
|
|
proto = ICMP
|
2018-12-03 04:39:13 +08:00
|
|
|
default:
|
2019-01-15 05:56:36 +08:00
|
|
|
printUsageError(fmt.Sprintf("Invalid value \"%s\" specified for parameter \"-p\".\n"+
|
|
|
|
"Valid parameters and values are:\n", *protocol))
|
2018-12-03 04:39:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if *thCount <= 0 {
|
|
|
|
*thCount = runtime.NumCPU()
|
|
|
|
}
|
|
|
|
|
2018-12-12 00:35:20 +08:00
|
|
|
//
|
|
|
|
// For Pkt/s, we always override the buffer size to be just 1 byte.
|
|
|
|
// TODO: Evaluate in future, if we need to support > 1 byte packets for
|
|
|
|
// Pkt/s testing.
|
|
|
|
//
|
|
|
|
if testType == Pps {
|
2018-12-03 04:39:13 +08:00
|
|
|
bufLen = 1
|
|
|
|
}
|
|
|
|
|
2018-12-12 00:35:20 +08:00
|
|
|
testParam := EthrTestParam{EthrTestID{EthrProtocol(proto), testType},
|
2018-12-03 04:39:13 +08:00
|
|
|
uint32(*thCount),
|
|
|
|
uint32(bufLen),
|
2019-01-21 01:13:47 +08:00
|
|
|
uint32(*rttCount),
|
|
|
|
*reverse}
|
|
|
|
validateTestParam(mode, testParam)
|
2018-12-03 04:39:13 +08:00
|
|
|
|
2019-01-02 13:12:26 +08:00
|
|
|
generatePortNumbers(*portStr)
|
2018-12-18 00:52:58 +08:00
|
|
|
|
2018-12-03 04:39:13 +08:00
|
|
|
logFileName := *outputFile
|
2019-01-02 13:12:26 +08:00
|
|
|
if !*noOutput {
|
|
|
|
if logFileName == defaultLogFileName {
|
|
|
|
switch mode {
|
|
|
|
case ethrModeServer:
|
2018-12-03 04:39:13 +08:00
|
|
|
logFileName = "ethrs.log"
|
2019-01-15 05:56:36 +08:00
|
|
|
case ethrModeExtServer:
|
|
|
|
logFileName = "ethrxs.log"
|
2019-01-02 13:12:26 +08:00
|
|
|
case ethrModeClient:
|
2018-12-03 04:39:13 +08:00
|
|
|
logFileName = "ethrc.log"
|
2019-01-02 13:12:26 +08:00
|
|
|
case ethrModeExtClient:
|
|
|
|
logFileName = "ethrxc.log"
|
2018-12-03 04:39:13 +08:00
|
|
|
}
|
|
|
|
}
|
2019-01-02 13:12:26 +08:00
|
|
|
logInit(logFileName, *debug)
|
|
|
|
}
|
|
|
|
|
2019-01-17 00:12:58 +08:00
|
|
|
clientParam := ethrClientParam{*duration, *gap}
|
2019-01-04 09:25:00 +08:00
|
|
|
serverParam := ethrServerParam{*showUI}
|
|
|
|
|
2019-01-02 13:12:26 +08:00
|
|
|
switch mode {
|
|
|
|
case ethrModeServer:
|
2019-01-04 09:25:00 +08:00
|
|
|
runServer(testParam, serverParam)
|
2019-01-15 05:56:36 +08:00
|
|
|
case ethrModeExtServer:
|
|
|
|
runXServer(testParam, serverParam)
|
2019-01-02 13:12:26 +08:00
|
|
|
case ethrModeClient:
|
2019-01-04 09:25:00 +08:00
|
|
|
runClient(testParam, clientParam, *clientDest)
|
2019-01-02 13:12:26 +08:00
|
|
|
case ethrModeExtClient:
|
2019-01-15 05:56:36 +08:00
|
|
|
runXClient(testParam, clientParam, *clientDest)
|
2018-12-03 04:39:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-12 00:35:20 +08:00
|
|
|
func emitUnsupportedTest(testParam EthrTestParam) {
|
2019-01-21 01:13:47 +08:00
|
|
|
printUsageError(fmt.Sprintf("\"%s\" test for \"%s\" is not supported.\n",
|
|
|
|
testToString(testParam.TestID.Type), protoToString(testParam.TestID.Protocol)))
|
2018-12-03 04:39:13 +08:00
|
|
|
}
|
|
|
|
|
2019-01-21 01:13:47 +08:00
|
|
|
func validateTestParam(mode ethrMode, testParam EthrTestParam) {
|
2018-12-12 00:35:20 +08:00
|
|
|
testType := testParam.TestID.Type
|
|
|
|
protocol := testParam.TestID.Protocol
|
2019-01-02 13:12:26 +08:00
|
|
|
if mode == ethrModeServer {
|
|
|
|
if testType != All || protocol != TCP {
|
2018-12-12 00:35:20 +08:00
|
|
|
emitUnsupportedTest(testParam)
|
2018-12-03 04:39:13 +08:00
|
|
|
}
|
2019-01-02 13:12:26 +08:00
|
|
|
} else if mode == ethrModeClient {
|
|
|
|
switch protocol {
|
|
|
|
case TCP:
|
|
|
|
if testType != Bandwidth && testType != Cps && testType != Latency {
|
|
|
|
emitUnsupportedTest(testParam)
|
|
|
|
}
|
|
|
|
case UDP:
|
|
|
|
if testType != Bandwidth && testType != Pps {
|
|
|
|
emitUnsupportedTest(testParam)
|
2018-12-12 00:35:20 +08:00
|
|
|
}
|
2019-01-02 13:12:26 +08:00
|
|
|
if testType == Bandwidth {
|
|
|
|
if testParam.BufferSize > (64 * 1024) {
|
2019-01-21 01:13:47 +08:00
|
|
|
printUsageError("Maximum supported buffer size for UDP is 64K\n")
|
2019-01-02 13:12:26 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
case HTTP:
|
|
|
|
if testType != Bandwidth {
|
|
|
|
emitUnsupportedTest(testParam)
|
|
|
|
}
|
2019-01-08 01:15:09 +08:00
|
|
|
case HTTPS:
|
|
|
|
if testType != Bandwidth {
|
|
|
|
emitUnsupportedTest(testParam)
|
|
|
|
}
|
2019-01-02 13:12:26 +08:00
|
|
|
default:
|
|
|
|
emitUnsupportedTest(testParam)
|
2018-12-12 00:35:20 +08:00
|
|
|
}
|
2019-01-02 13:12:26 +08:00
|
|
|
} else if mode == ethrModeExtClient {
|
2019-01-15 05:56:36 +08:00
|
|
|
if (protocol != TCP) || (testType != ConnLatency && testType != Bandwidth) {
|
2018-12-12 00:35:20 +08:00
|
|
|
emitUnsupportedTest(testParam)
|
2018-12-03 04:39:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-01-15 05:56:36 +08:00
|
|
|
|
|
|
|
func printUsageError(s string) {
|
|
|
|
fmt.Printf("Error: %s\n", s)
|
2019-01-21 01:13:47 +08:00
|
|
|
fmt.Printf("Please use \"ethr -h\" for ethr command line arguments.\n")
|
|
|
|
// ethrUsage()
|
2019-01-15 05:56:36 +08:00
|
|
|
os.Exit(1)
|
|
|
|
}
|