aboutsummaryrefslogtreecommitdiff
path: root/src/fs/fs.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-06-23 08:35:49 +0000
committerChristian Grothoff <christian@grothoff.org>2012-06-23 08:35:49 +0000
commitc00ade9abf751ea2157f1f78dd834257fe19ed6c (patch)
tree0eebb88f356ba98fce52398dcea22a89011d7e6d /src/fs/fs.h
parent8f850cddd40436aa9f5a3ec82606dd5bceebef3d (diff)
downloadgnunet-c00ade9abf751ea2157f1f78dd834257fe19ed6c.tar.gz
gnunet-c00ade9abf751ea2157f1f78dd834257fe19ed6c.zip
-passing total trust offered along (fixing #1369)
Diffstat (limited to 'src/fs/fs.h')
-rw-r--r--src/fs/fs.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/fs/fs.h b/src/fs/fs.h
index 3aa9fcc1b..ffd448d2b 100644
--- a/src/fs/fs.h
+++ b/src/fs/fs.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Christian Grothoff (and other contributing authors) 3 (C) 2003--2012 Christian Grothoff (and other contributing authors)
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
@@ -321,6 +321,18 @@ struct ClientPutMessage
321 */ 321 */
322 struct GNUNET_TIME_AbsoluteNBO last_transmission; 322 struct GNUNET_TIME_AbsoluteNBO last_transmission;
323 323
324 /**
325 * How often did we transmit this query before getting an
326 * answer (estimate).
327 */
328 uint32_t num_transmissions;
329
330 /**
331 * How much respect did we offer (in total) before getting an
332 * answer (estimate).
333 */
334 uint32_t respect_offered;
335
324 /* this is followed by the actual encrypted content */ 336 /* this is followed by the actual encrypted content */
325 337
326}; 338};