aboutsummaryrefslogtreecommitdiff
path: root/src/fs/fs.h
diff options
context:
space:
mode:
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 */