aboutsummaryrefslogtreecommitdiff
path: root/src/fs/fs.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-03-30 06:52:25 +0000
committerChristian Grothoff <christian@grothoff.org>2010-03-30 06:52:25 +0000
commitec55bba59025e6a6ff25c950184c836e12855847 (patch)
tree1948aecf1750935dbdf9ab0eec14344e831b1d24 /src/fs/fs.h
parenta8e90a359a36b28bc73bd3709332cef607d139fa (diff)
downloadgnunet-ec55bba59025e6a6ff25c950184c836e12855847.tar.gz
gnunet-ec55bba59025e6a6ff25c950184c836e12855847.zip
stuff
Diffstat (limited to 'src/fs/fs.h')
-rw-r--r--src/fs/fs.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/fs/fs.h b/src/fs/fs.h
index b7fab55f0..e3b3bc99d 100644
--- a/src/fs/fs.h
+++ b/src/fs/fs.h
@@ -815,6 +815,33 @@ struct GNUNET_FS_SearchContext
815 struct GNUNET_FS_SearchContext *parent; 815 struct GNUNET_FS_SearchContext *parent;
816 816
817 /** 817 /**
818 * For update-searches, link to the
819 * first child search that triggered the
820 * update search; otherwise NULL.
821 */
822 struct GNUNET_FS_SearchContext *child_head;
823
824 /**
825 * For update-searches, link to the
826 * last child search that triggered the
827 * update search; otherwise NULL.
828 */
829 struct GNUNET_FS_SearchContext *child_tail;
830
831 /**
832 * For update-searches, link to the
833 * next child belonging to the same parent.
834 */
835 struct GNUNET_FS_SearchContext *next;
836
837 /**
838 * For update-searches, link to the
839 * previous child belonging to the same
840 * parent.
841 */
842 struct GNUNET_FS_SearchContext *prev;
843
844 /**
818 * Connection to the FS service. 845 * Connection to the FS service.
819 */ 846 */
820 struct GNUNET_CLIENT_Connection *client; 847 struct GNUNET_CLIENT_Connection *client;