diff options
author | Marcello Stanisci <marcello.stanisci@inria.fr> | 2016-05-30 15:08:12 +0200 |
---|---|---|
committer | Marcello Stanisci <marcello.stanisci@inria.fr> | 2016-05-30 15:08:12 +0200 |
commit | 848c7f0e4fe3adde77e1cb1e1b4677dd5ef2ca0e (patch) | |
tree | cae411b2c233a535027120f874f5ec4f88948944 /src/benchmark/taler-exchange-benchmark.c | |
parent | 1982fdd81cb7284c883dd810aef2827c19a54209 (diff) |
benchmark makefile
Diffstat (limited to 'src/benchmark/taler-exchange-benchmark.c')
-rw-r--r-- | src/benchmark/taler-exchange-benchmark.c | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/benchmark/taler-exchange-benchmark.c b/src/benchmark/taler-exchange-benchmark.c new file mode 100644 index 000000000..213a0573d --- /dev/null +++ b/src/benchmark/taler-exchange-benchmark.c @@ -0,0 +1,46 @@ +/* + This file is part of TALER + Copyright (C) 2014, 2015, 2016 GNUnet e.V. and INRIA + + TALER is free software; you can redistribute it and/or modify it under the + terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2.1, or (at your option) any later version. + + TALER 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + TALER; see the file COPYING.LGPL. If not, If not, see <http://www.gnu.org/licenses/> +*/ +/** + * @file src/benchmark/taler-exchange-benchmark.c + * @brief exchange's benchmark + * @author Marcello Stanisci + */ +#include "platform.h" +#include <taler/taler_util.h> +#include <taler/taler_signatures.h> +#include <taler/taler_exchange_service.h> +#include <taler/taler_json_lib.h> +#include <gnunet/gnunet_util_lib.h> +#include <gnunet/gnunet_curl_lib.h> +#include <microhttpd.h> + +/** + * URI under which the exchange is reachable during the benchmark. + */ +#define EXCHANGE_URI "http://localhost:8081/" +/** + + * Main function for the exchange's benchmark. + * + * @param argc expected to be 1 + * @param argv expected to only contain the program name + */ +int +main (int argc, + char * const *argv) +{ + return GNUNET_OK; +} |