aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2014-03-17 11:02:50 +0000
committerBart Polot <bart@net.in.tum.de>2014-03-17 11:02:50 +0000
commit167a0022c608251a9544445267d67ca701e72757 (patch)
tree81eff119ebd6384074b73ca94c2abbbd949f8f69 /src
parent72f69178f5004f5e2ab6e17354812e14403ec912 (diff)
downloadgnunet-167a0022c608251a9544445267d67ca701e72757.tar.gz
gnunet-167a0022c608251a9544445267d67ca701e72757.zip
- doc
Diffstat (limited to 'src')
-rw-r--r--src/mesh/gnunet-mesh-profiler.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/mesh/gnunet-mesh-profiler.c b/src/mesh/gnunet-mesh-profiler.c
index ffdfbedb1..4b9ac1676 100644
--- a/src/mesh/gnunet-mesh-profiler.c
+++ b/src/mesh/gnunet-mesh-profiler.c
@@ -104,9 +104,24 @@ struct MeshPeer
104 104
105 int up; 105 int up;
106 106
107 /**
108 * Destinaton to ping.
109 */
107 struct MeshPeer *dest; 110 struct MeshPeer *dest;
111
112 /**
113 * Incoming channel for pings.
114 */
108 struct MeshPeer *incoming; 115 struct MeshPeer *incoming;
116
117 /**
118 * Task to do the next ping.
119 */
109 GNUNET_SCHEDULER_TaskIdentifier ping_task; 120 GNUNET_SCHEDULER_TaskIdentifier ping_task;
121
122 /**
123 * Time the last ping was sent.
124 */
110 struct GNUNET_TIME_Absolute timestamp; 125 struct GNUNET_TIME_Absolute timestamp;
111}; 126};
112 127