diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-03-25 21:25:44 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-03-25 21:25:44 +0100 |
commit | 5a7cef0202631204485cbcb1e36671e4321a936f (patch) | |
tree | ff3d10ac71f9284f18be7c33939f3438071e15c4 /src/transport/gnunet-transport-profiler.c | |
parent | 2ad934742422ecb63fe3fafdc8c73d067a9e2fb7 (diff) |
rename GNUNET_GETOPT functions to achieve better consistency
Diffstat (limited to 'src/transport/gnunet-transport-profiler.c')
-rw-r--r-- | src/transport/gnunet-transport-profiler.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/transport/gnunet-transport-profiler.c b/src/transport/gnunet-transport-profiler.c index 9292c42d42..d580fce088 100644 --- a/src/transport/gnunet-transport-profiler.c +++ b/src/transport/gnunet-transport-profiler.c @@ -612,35 +612,35 @@ main (int argc, char * const *argv) struct GNUNET_GETOPT_CommandLineOption options[] = { - GNUNET_GETOPT_OPTION_SET_ONE ('s', + GNUNET_GETOPT_option_flag ('s', "send", gettext_noop ("send data to peer"), &benchmark_send), - GNUNET_GETOPT_OPTION_SET_ONE ('r', + GNUNET_GETOPT_option_flag ('r', "receive", gettext_noop ("receive data from peer"), &benchmark_receive), - GNUNET_GETOPT_OPTION_SET_UINT ('i', + GNUNET_GETOPT_option_uint ('i', "iterations", NULL, gettext_noop ("iterations"), &benchmark_iterations), - GNUNET_GETOPT_OPTION_SET_UINT ('n', + GNUNET_GETOPT_option_uint ('n', "number", NULL, gettext_noop ("number of messages to send"), &benchmark_count), - GNUNET_GETOPT_OPTION_SET_UINT ('m', + GNUNET_GETOPT_option_uint ('m', "messagesize", NULL, gettext_noop ("message size to use"), &benchmark_size), - GNUNET_GETOPT_OPTION_STRING ('p', + GNUNET_GETOPT_option_string ('p', "peer", "PEER", gettext_noop ("peer identity"), &cpid), - GNUNET_GETOPT_OPTION_VERBOSE (&verbosity), + GNUNET_GETOPT_option_verbose (&verbosity), GNUNET_GETOPT_OPTION_END }; |