aboutsummaryrefslogtreecommitdiff
path: root/src/set/gnunet-service-set_union.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/set/gnunet-service-set_union.c')
-rw-r--r--src/set/gnunet-service-set_union.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/set/gnunet-service-set_union.c b/src/set/gnunet-service-set_union.c
index 1a421063e..b51939da0 100644
--- a/src/set/gnunet-service-set_union.c
+++ b/src/set/gnunet-service-set_union.c
@@ -895,6 +895,10 @@ handle_p2p_strata_estimator (void *cls,
895 "Sending full set (diff=%d, own set=%u)\n", 895 "Sending full set (diff=%d, own set=%u)\n",
896 diff, 896 diff,
897 op->state->initial_size); 897 op->state->initial_size);
898 GNUNET_STATISTICS_update (_GSS_statistics,
899 "# of full sends",
900 1,
901 GNUNET_NO);
898 if (op->state->initial_size <= other_size) 902 if (op->state->initial_size <= other_size)
899 { 903 {
900 send_full_set (op); 904 send_full_set (op);
@@ -909,6 +913,10 @@ handle_p2p_strata_estimator (void *cls,
909 } 913 }
910 else 914 else
911 { 915 {
916 GNUNET_STATISTICS_update (_GSS_statistics,
917 "# of ibf sends",
918 1,
919 GNUNET_NO);
912 if (GNUNET_OK != 920 if (GNUNET_OK !=
913 send_ibf (op, 921 send_ibf (op,
914 get_order_from_difference (diff))) 922 get_order_from_difference (diff)))