aboutsummaryrefslogtreecommitdiff
path: root/src/peerstore/peerstore.h
diff options
context:
space:
mode:
authorOmar Tarabai <tarabai@devegypt.com>2014-05-30 16:06:00 +0000
committerOmar Tarabai <tarabai@devegypt.com>2014-05-30 16:06:00 +0000
commit95cdeb5c0bb1f14f3959863e6bf4675db48ea177 (patch)
tree545e2a910c0efdae9dc2e2af8da45efa007cdf32 /src/peerstore/peerstore.h
parent02f9d1e7389d0da0a475ae0035b67801c7ca2d06 (diff)
downloadgnunet-95cdeb5c0bb1f14f3959863e6bf4675db48ea177.tar.gz
gnunet-95cdeb5c0bb1f14f3959863e6bf4675db48ea177.zip
peerstore: towards watch functionality
Diffstat (limited to 'src/peerstore/peerstore.h')
-rw-r--r--src/peerstore/peerstore.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/peerstore/peerstore.h b/src/peerstore/peerstore.h
index 7c6e6bdbc..5adf9f363 100644
--- a/src/peerstore/peerstore.h
+++ b/src/peerstore/peerstore.h
@@ -77,6 +77,24 @@ struct StoreRecordMessage
77 77
78}; 78};
79 79
80/**
81 * Message carrying record key hash
82 */
83struct StoreKeyHashMessage
84{
85
86 /**
87 * GNUnet message header
88 */
89 struct GNUNET_MessageHeader header;
90
91 /**
92 * Hash of a record key
93 */
94 struct GNUNET_HashCode keyhash;
95
96};
97
80GNUNET_NETWORK_STRUCT_END 98GNUNET_NETWORK_STRUCT_END
81 99
82#endif 100#endif