aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_psyc_service.h
diff options
context:
space:
mode:
authorGabor X Toth <*@tg-x.net>2013-07-15 09:13:19 +0000
committerGabor X Toth <*@tg-x.net>2013-07-15 09:13:19 +0000
commit3b1199eb8f4a3319a13d34878a956f16c66a5b19 (patch)
tree8beb020ee1b9434cffd35b1957eb894576183a5d /src/include/gnunet_psyc_service.h
parent28f55772ae328ee41265bd12da898bd04da2374b (diff)
downloadgnunet-3b1199eb8f4a3319a13d34878a956f16c66a5b19.tar.gz
gnunet-3b1199eb8f4a3319a13d34878a956f16c66a5b19.zip
PSYC: historic message flag
Diffstat (limited to 'src/include/gnunet_psyc_service.h')
-rw-r--r--src/include/gnunet_psyc_service.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/include/gnunet_psyc_service.h b/src/include/gnunet_psyc_service.h
index 8016ea498..d35c68f7e 100644
--- a/src/include/gnunet_psyc_service.h
+++ b/src/include/gnunet_psyc_service.h
@@ -101,17 +101,24 @@ enum GNUNET_PSYC_MessageFlags
101 /** 101 /**
102 * First fragment of a message. 102 * First fragment of a message.
103 */ 103 */
104 GNUNET_PSYC_MESSAGE_FIRST_FRAGMENT = GNUNET_MULTICAST_MESSAGE_FIRST_FRAGMENT, 104 GNUNET_PSYC_MESSAGE_FIRST_FRAGMENT = 1 << 0,
105 105
106 /** 106 /**
107 * Last fragment of a message. 107 * Last fragment of a message.
108 */ 108 */
109 GNUNET_PSYC_MESSAGE_LAST_FRAGMENT = GNUNET_MULTICAST_MESSAGE_LAST_FRAGMENT, 109 GNUNET_PSYC_MESSAGE_LAST_FRAGMENT = 1 << 1,
110 110
111 /** 111 /**
112 * OR'ed flags if message is not fragmented. 112 * OR'ed flags if message is not fragmented.
113 */ 113 */
114 GNUNET_PSYC_MESSAGE_NOT_FRAGMENTED = GNUNET_MULTICAST_MESSAGE_NOT_FRAGMENTED 114 GNUNET_PSYC_MESSAGE_NOT_FRAGMENTED
115 = GNUNET_PSYC_MESSAGE_FIRST_FRAGMENT
116 | GNUNET_PSYC_MESSAGE_LAST_FRAGMENT,
117
118 /**
119 * Historic message, retrieved from PSYCstore.
120 */
121 GNUNET_PSYC_MESSAGE_HISTORIC = 1 << 2
115}; 122};
116 123
117 124