aboutsummaryrefslogtreecommitdiff
path: root/src/peerstore/peerstore.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-09-24 11:58:31 +0000
committerChristian Grothoff <christian@grothoff.org>2016-09-24 11:58:31 +0000
commit3bca0a62abc14e5fe36e1c80ff487e0051dad562 (patch)
tree25a9dc36162d498910f6e41aa85a0d3863e0c1c0 /src/peerstore/peerstore.h
parentd02c15600b668a30e091d2c5c59d918bb1e4fee7 (diff)
downloadgnunet-3bca0a62abc14e5fe36e1c80ff487e0051dad562.tar.gz
gnunet-3bca0a62abc14e5fe36e1c80ff487e0051dad562.zip
migrate peerstore to new service MQ API
Diffstat (limited to 'src/peerstore/peerstore.h')
-rw-r--r--src/peerstore/peerstore.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/peerstore/peerstore.h b/src/peerstore/peerstore.h
index f5e2cd19c..8b3c4dd92 100644
--- a/src/peerstore/peerstore.h
+++ b/src/peerstore/peerstore.h
@@ -33,7 +33,7 @@ GNUNET_NETWORK_STRUCT_BEGIN
33/** 33/**
34 * Message carrying a PEERSTORE record message 34 * Message carrying a PEERSTORE record message
35 */ 35 */
36 struct StoreRecordMessage 36struct StoreRecordMessage
37{ 37{
38 38
39 /** 39 /**
@@ -78,8 +78,9 @@ GNUNET_NETWORK_STRUCT_BEGIN
78 * Options, needed only in case of a 78 * Options, needed only in case of a
79 * store operation 79 * store operation
80 */ 80 */
81 uint32_t /* enum GNUNET_PEERSTORE_StoreOption */ options 81 uint32_t /* enum GNUNET_PEERSTORE_StoreOption */ options GNUNET_PACKED;
82 GNUNET_PACKED; 82
83 /* Followed by key and value */
83 84
84}; 85};
85 86