aboutsummaryrefslogtreecommitdiff
path: root/src/fs/fs.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-09-18 19:10:12 +0000
committerChristian Grothoff <christian@grothoff.org>2010-09-18 19:10:12 +0000
commit3756b235a8ef6a680a1bc7197c1ce45d778af09c (patch)
treeec506ec28427cfc7813711b938fccbbbb6d1d728 /src/fs/fs.h
parentd24bc034571753884f63bdb9c45ec53ef289121c (diff)
downloadgnunet-3756b235a8ef6a680a1bc7197c1ce45d778af09c.tar.gz
gnunet-3756b235a8ef6a680a1bc7197c1ce45d778af09c.zip
plane hacking
Diffstat (limited to 'src/fs/fs.h')
-rw-r--r--src/fs/fs.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/fs/fs.h b/src/fs/fs.h
index 605e6c84b..edbde19da 100644
--- a/src/fs/fs.h
+++ b/src/fs/fs.h
@@ -2222,6 +2222,32 @@ struct PutMessage
2222}; 2222};
2223 2223
2224 2224
2225/**
2226 * Message send by a peer that wants to be excluded
2227 * from migration for a while.
2228 */
2229struct MigrationStopMessage
2230{
2231 /**
2232 * Message type will be
2233 * GNUNET_MESSAGE_TYPE_FS_MIGRATION_STOP.
2234 */
2235 struct GNUNET_MessageHeader header;
2236
2237 /**
2238 * Always zero.
2239 */
2240 uint32_t reserved GNUNET_PACKED;
2241
2242 /**
2243 * How long should the block last?
2244 */
2245 struct GNUNET_TIME_RelativeNBO duration;
2246
2247};
2248
2249
2250
2225#endif 2251#endif
2226 2252
2227/* end of fs.h */ 2253/* end of fs.h */