package third_party.cmd

@App
@AutoCmd
@Build(stage=2,script="$(EXTERNAL_MAKE)")
@Cmd(name = "iperf",
	help = "iperf is a tool for measuring maximum TCP and UDP bandwidth performance",
	man = '''
		NAME
			iperf is a tool for measuring maximum TCP and UDP bandwidth performance.
		SYNOPSIS
			iperf [-s|-c host] [options]
       		iperf [-h|--help] [-v|--version]

		AUTHORS
			Andrey Gazukin
	''')
module iperf {
	source "^BUILD/extbld/^MOD_PATH/install/iperf.o"

	@NoRuntime depends embox.compat.posix.LibPosix
	@NoRuntime depends embox.compat.posix.util.nanosleep

	depends embox.compat.posix.proc.daemon_api
	depends embox.compat.posix.proc.atexit_api
}
