aboutsummaryrefslogtreecommitdiff
path: root/src/arm/mockup-service.c
diff options
context:
space:
mode:
authorSafey A.Halim <safey.allah@gmail.com>2010-01-15 15:24:30 +0000
committerSafey A.Halim <safey.allah@gmail.com>2010-01-15 15:24:30 +0000
commita257f028184102b04995c6774f065200919a3dff (patch)
treee0e2760dbab86c615447dc2923fc59a45bc2f098 /src/arm/mockup-service.c
parent6cc0ff803561b9c05736781042811d73d75761b2 (diff)
downloadgnunet-a257f028184102b04995c6774f065200919a3dff.tar.gz
gnunet-a257f028184102b04995c6774f065200919a3dff.zip
Test case for arm exponential backoff (Incomplete)
Diffstat (limited to 'src/arm/mockup-service.c')
-rw-r--r--src/arm/mockup-service.c54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/arm/mockup-service.c b/src/arm/mockup-service.c
new file mode 100644
index 000000000..026138fab
--- /dev/null
+++ b/src/arm/mockup-service.c
@@ -0,0 +1,54 @@
1/*
2 This file is part of GNUnet.
3 (C) 2007, 2008, 2009 Christian Grothoff (and other contributing authors)
4
5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 2, or (at your
8 option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
19*/
20
21#include <stdlib.h>
22#include "platform.h"
23#include "gnunet_disk_lib.h"
24#include "gnunet_getopt_lib.h"
25#include "gnunet_protocols.h"
26#include "gnunet_service_lib.h"
27#include "gnunet_statistics_service.h"
28#include "gnunet_strings_lib.h"
29#include "gnunet_time_lib.h"
30
31
32static void
33run (void *cls,
34 struct GNUNET_SCHEDULER_Handle *sched,
35 struct GNUNET_SERVER_Handle *server,
36 const struct GNUNET_CONFIGURATION_Handle *cfg)
37{
38 /* Does nothing */
39 int x = 0;
40}
41
42
43int main(int argc, char *const *argv)
44{
45 int ret;
46
47 ret = (GNUNET_OK ==
48 GNUNET_SERVICE_run (argc,
49 argv,
50 "do-nothing", GNUNET_SERVICE_OPTION_NONE,
51 &run, NULL)) ? 0 : 1;
52
53 return ret;
54} \ No newline at end of file