aboutsummaryrefslogtreecommitdiff
path: root/src/rps
diff options
context:
space:
mode:
authorJulius Bünger <buenger@mytum.de>2015-05-19 22:41:18 +0000
committerJulius Bünger <buenger@mytum.de>2015-05-19 22:41:18 +0000
commita6d4c5ada59770b22d5c1e0508c2ad87efdeb9b8 (patch)
treead937baf1916be60ecc75a315c5ea9974d01867a /src/rps
parent69f79d1114974006e05ed2bc6010b1efa332aac3 (diff)
downloadgnunet-a6d4c5ada59770b22d5c1e0508c2ad87efdeb9b8.tar.gz
gnunet-a6d4c5ada59770b22d5c1e0508c2ad87efdeb9b8.zip
-further logging in malicious execution
Diffstat (limited to 'src/rps')
-rw-r--r--src/rps/gnunet-service-rps.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/rps/gnunet-service-rps.c b/src/rps/gnunet-service-rps.c
index 3e7111493..46f3fdacb 100644
--- a/src/rps/gnunet-service-rps.c
+++ b/src/rps/gnunet-service-rps.c
@@ -1864,6 +1864,10 @@ do_mal_round (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1864 num_attacked_peers), 1864 num_attacked_peers),
1865 GNUNET_CONSTANTS_MAX_CADET_MESSAGE_SIZE); 1865 GNUNET_CONSTANTS_MAX_CADET_MESSAGE_SIZE);
1866 1866
1867 LOG (GNUNET_ERROR_TYPE_DEBUG,
1868 "Going to send %" PRIu32 " pushes\n",
1869 num_pushes);
1870
1867 /* Send PUSHes to attacked peers */ 1871 /* Send PUSHes to attacked peers */
1868 for (i = 0 ; i < num_pushes ; i++) 1872 for (i = 0 ; i < num_pushes ; i++)
1869 { 1873 {
@@ -1906,6 +1910,10 @@ do_mal_round (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1906 num_attacked_peers), 1910 num_attacked_peers),
1907 GNUNET_CONSTANTS_MAX_CADET_MESSAGE_SIZE); 1911 GNUNET_CONSTANTS_MAX_CADET_MESSAGE_SIZE);
1908 1912
1913 LOG (GNUNET_ERROR_TYPE_DEBUG,
1914 "Going to send %" PRIu32 " pushes\n",
1915 num_pushes);
1916
1909 /* Send PUSHes to attacked peers */ 1917 /* Send PUSHes to attacked peers */
1910 send_push (&attacked_peer); 1918 send_push (&attacked_peer);
1911 1919