aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2012-05-26 15:42:31 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2012-05-26 15:42:31 +0000
commit9335e385dcd74d892da8c77a2562bd440bf59eb1 (patch)
treedb387beaea3a8967affb1b6ca80db409f6f1a597
parent9bf861f928fc3dfd6ad1b01a6b00da25b7bade09 (diff)
downloadgnunet-9335e385dcd74d892da8c77a2562bd440bf59eb1.tar.gz
gnunet-9335e385dcd74d892da8c77a2562bd440bf59eb1.zip
- AI_NUMERICSERV windows hack
-rw-r--r--src/testing/testing_new.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/testing/testing_new.c b/src/testing/testing_new.c
index 504530822..fd76894af 100644
--- a/src/testing/testing_new.c
+++ b/src/testing/testing_new.c
@@ -38,6 +38,13 @@
38 GNUNET_log_from (kind, "gnunettestingnew", __VA_ARGS__) 38 GNUNET_log_from (kind, "gnunettestingnew", __VA_ARGS__)
39 39
40/** 40/**
41 * AI_NUMERICSERV not defined in windows. A hack to keep on going.
42 */
43#if !defined (AI_NUMERICSERV)
44#define AI_NUMERICSERV 0
45#endif
46
47/**
41 * Handle for a system on which GNUnet peers are executed; 48 * Handle for a system on which GNUnet peers are executed;
42 * a system is used for reserving unique paths and ports. 49 * a system is used for reserving unique paths and ports.
43 */ 50 */