mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
c518bd2f19
Removed V2 references: TokenQueueV2 and RsTokReqOptionsV2 are now TokenQueue and RsTokReqOptions and renamed file Added initialisation of Posted back end service successfully Added new msg status flags GXS_SERV::MSG_STATUS_UNPROCESSED and ::MSG_STATUS_UNREAD git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-gxs-b1@5707 b45a01b8-16f6-495d-af2f-9b41ad6348cc
81 lines
2.1 KiB
C++
81 lines
2.1 KiB
C++
#ifndef RSGXSFLAGS_H
|
|
#define RSGXSFLAGS_H
|
|
|
|
#include "inttypes.h"
|
|
|
|
/**
|
|
* The GXS_SERV namespace serves a single point of reference for definining grp and msg flags
|
|
* Declared and defined here are:
|
|
* - privacy flags which define the level of privacy that can be given \n
|
|
* to a group
|
|
* - authentication types which defined types of authentication needed for a given message to
|
|
* confirm its authenticity
|
|
* - subscription flags: This used only locally by the peer to subscription status to a \n
|
|
* a group
|
|
* -
|
|
*/
|
|
namespace GXS_SERV {
|
|
|
|
|
|
|
|
/** START privacy **/
|
|
|
|
static const uint32_t FLAG_PRIVACY_MASK = 0x0000000f;
|
|
|
|
// pub key encrypted
|
|
static const uint32_t FLAG_PRIVACY_PRIVATE = 0x00000001;
|
|
|
|
// publish private key needed to publish
|
|
static const uint32_t FLAG_PRIVACY_RESTRICTED = 0x00000002;
|
|
|
|
// anyone can publish, publish key pair not needed
|
|
static const uint32_t FLAG_PRIVACY_PUBLIC = 0x00000004;
|
|
|
|
/** END privacy **/
|
|
|
|
/** START authentication **/
|
|
|
|
static const uint32_t FLAG_AUTHEN_MASK = 0x000000f0;
|
|
|
|
// identity
|
|
static const uint32_t FLAG_AUTHEN_IDENTITY = 0x000000010;
|
|
|
|
// publish key
|
|
static const uint32_t FLAG_AUTHEN_PUBLISH = 0x000000020;
|
|
|
|
// admin key
|
|
static const uint32_t FLAG_AUTHEN_ADMIN = 0x00000040;
|
|
|
|
// pgp sign identity
|
|
static const uint32_t FLAG_AUTHEN_PGP_IDENTITY = 0x00000080;
|
|
|
|
/** END authentication **/
|
|
|
|
|
|
/** START Subscription Flags. (LOCAL) **/
|
|
|
|
static const uint32_t GROUP_SUBSCRIBE_ADMIN = 0x00000001;
|
|
|
|
static const uint32_t GROUP_SUBSCRIBE_PUBLISH = 0x00000002;
|
|
|
|
static const uint32_t GROUP_SUBSCRIBE_SUBSCRIBED = 0x00000004;
|
|
|
|
static const uint32_t GROUP_SUBSCRIBE_NOT_SUBSCRIBED = 0x00000008;
|
|
|
|
static const uint32_t GROUP_SUBSCRIBE_MASK = 0x0000000f;
|
|
|
|
/** END Subscription Flags. (LOCAL) **/
|
|
|
|
/** START GXS Msg status flags **/
|
|
|
|
static const uint32_t GXS_MSG_STATUS_UNPROCESSED = 0x000000100;
|
|
|
|
static const uint32_t GXS_MSG_STATUS_UNREAD = 0x00000200;
|
|
|
|
/** END GXS Msg status flags **/
|
|
|
|
}
|
|
|
|
|
|
#endif // RSGXSFLAGS_H
|