aboutsummaryrefslogtreecommitdiff
path: root/src/nse
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-07-29 08:26:57 +0000
committerChristian Grothoff <christian@grothoff.org>2011-07-29 08:26:57 +0000
commit514c38805cbcb82e8805437ae03f77fb1c6f8639 (patch)
tree774776eb0e7280f080db8f4d9d26603afe983283 /src/nse
parentbc5612fd3b21b6780c3a48f8974c63ab7284d8d4 (diff)
downloadgnunet-514c38805cbcb82e8805437ae03f77fb1c6f8639.tar.gz
gnunet-514c38805cbcb82e8805437ae03f77fb1c6f8639.zip
remove option
Diffstat (limited to 'src/nse')
-rw-r--r--src/nse/gnunet-service-nse.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/nse/gnunet-service-nse.c b/src/nse/gnunet-service-nse.c
index 4fea02c34..40cc70ec3 100644
--- a/src/nse/gnunet-service-nse.c
+++ b/src/nse/gnunet-service-nse.c
@@ -48,11 +48,6 @@
48#define NODELAYS GNUNET_YES 48#define NODELAYS GNUNET_YES
49 49
50/** 50/**
51 * Send messages on connect.
52 */
53#define SEND_ON_CONNECT GNUNET_YES
54
55/**
56 * Should we generate a histogram with the time stamps of when we received 51 * Should we generate a histogram with the time stamps of when we received
57 * NSE messages to disk? (for performance evaluation only, not useful in 52 * NSE messages to disk? (for performance evaluation only, not useful in
58 * production) 53 * production)
@@ -1141,11 +1136,9 @@ handle_core_connect(void *cls, const struct GNUNET_PeerIdentity *peer,
1141 &peer->hashPubKey, 1136 &peer->hashPubKey,
1142 peer_entry, 1137 peer_entry,
1143 GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY); 1138 GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
1144#if SEND_ON_CONNECT
1145 peer_entry->transmit_task = GNUNET_SCHEDULER_add_delayed (get_transmit_delay (-1), 1139 peer_entry->transmit_task = GNUNET_SCHEDULER_add_delayed (get_transmit_delay (-1),
1146 &transmit_task, 1140 &transmit_task,
1147 peer_entry); 1141 peer_entry);
1148#endif
1149} 1142}
1150 1143
1151 1144