aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/gnunet-namestore-fcfsd.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-09-06 07:17:18 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-09-06 07:17:18 +0000
commit5ba60e6f5fe0b4a0f11ef34a572e844cba5e5329 (patch)
treee209465e2045176ef58e8679a0988b5d6fdb2225 /src/namestore/gnunet-namestore-fcfsd.c
parent1901855762e530b24a56921a57ac1045f9452a04 (diff)
downloadgnunet-5ba60e6f5fe0b4a0f11ef34a572e844cba5e5329.tar.gz
gnunet-5ba60e6f5fe0b4a0f11ef34a572e844cba5e5329.zip
check if MHD_DUAL_STACK is defined
Diffstat (limited to 'src/namestore/gnunet-namestore-fcfsd.c')
-rw-r--r--src/namestore/gnunet-namestore-fcfsd.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/namestore/gnunet-namestore-fcfsd.c b/src/namestore/gnunet-namestore-fcfsd.c
index b1f45b03a..c0b9f4da6 100644
--- a/src/namestore/gnunet-namestore-fcfsd.c
+++ b/src/namestore/gnunet-namestore-fcfsd.c
@@ -929,7 +929,13 @@ identity_cb (void *cls,
929 return; 929 return;
930 } 930 }
931 fcfs_zone_pkey = *GNUNET_IDENTITY_ego_get_private_key (ego); 931 fcfs_zone_pkey = *GNUNET_IDENTITY_ego_get_private_key (ego);
932 httpd = MHD_start_daemon (MHD_USE_DUAL_STACK | MHD_USE_DEBUG, 932
933
934 httpd = MHD_start_daemon (
935#ifdef MHD_USE_DUAL_STACK
936 MHD_USE_DUAL_STACK |
937#endif
938 MHD_USE_DEBUG,
933 (uint16_t) port, 939 (uint16_t) port,
934 NULL, NULL, 940 NULL, NULL,
935 &create_response, NULL, 941 &create_response, NULL,