mirror of
https://github.com/status-im/status-go.git
synced 2025-01-17 02:02:36 +00:00
e65760ca85
This commit adds basic syncing capabilities with peers if they are both online. It updates the work done on MVDS, but I decided to create the code in status-go instead, since it's very tight to the application (similarly the code that was the inspiration for mvds, bramble, is all tight together at the database level). I reused parts of the protobufs. The flow is: 1) An OFFER message is sent periodically with a bunch of message-ids and group-ids. 2) Anyone can REQUEST some of those messages if not present in their database. 3) The peer will then send over those messages. It's disabled by default, but I am planning to add a way to set up the flags.
47 lines
1.3 KiB
C
47 lines
1.3 KiB
C
#ifndef _PERSONALITY_H
|
|
#define _PERSONALITY_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define ADDR_NO_RANDOMIZE 0x0040000
|
|
#define MMAP_PAGE_ZERO 0x0100000
|
|
#define ADDR_COMPAT_LAYOUT 0x0200000
|
|
#define READ_IMPLIES_EXEC 0x0400000
|
|
#define ADDR_LIMIT_32BIT 0x0800000
|
|
#define SHORT_INODE 0x1000000
|
|
#define WHOLE_SECONDS 0x2000000
|
|
#define STICKY_TIMEOUTS 0x4000000
|
|
#define ADDR_LIMIT_3GB 0x8000000
|
|
|
|
#define PER_LINUX 0
|
|
#define PER_LINUX_32BIT ADDR_LIMIT_32BIT
|
|
#define PER_SVR4 (1 | STICKY_TIMEOUTS | MMAP_PAGE_ZERO)
|
|
#define PER_SVR3 (2 | STICKY_TIMEOUTS | SHORT_INODE)
|
|
#define PER_SCOSVR3 (3 | STICKY_TIMEOUTS | WHOLE_SECONDS | SHORT_INODE)
|
|
#define PER_OSR5 (3 | STICKY_TIMEOUTS | WHOLE_SECONDS)
|
|
#define PER_WYSEV386 (4 | STICKY_TIMEOUTS | SHORT_INODE)
|
|
#define PER_ISCR4 (5 | STICKY_TIMEOUTS)
|
|
#define PER_BSD 6
|
|
#define PER_SUNOS (6 | STICKY_TIMEOUTS)
|
|
#define PER_XENIX (7 | STICKY_TIMEOUTS | SHORT_INODE)
|
|
#define PER_LINUX32 8
|
|
#define PER_LINUX32_3GB (8 | ADDR_LIMIT_3GB)
|
|
#define PER_IRIX32 (9 | STICKY_TIMEOUTS)
|
|
#define PER_IRIXN32 (0xa | STICKY_TIMEOUTS)
|
|
#define PER_IRIX64 (0x0b | STICKY_TIMEOUTS)
|
|
#define PER_RISCOS 0xc
|
|
#define PER_SOLARIS (0xd | STICKY_TIMEOUTS)
|
|
#define PER_UW7 (0xe | STICKY_TIMEOUTS | MMAP_PAGE_ZERO)
|
|
#define PER_OSF4 0xf
|
|
#define PER_HPUX 0x10
|
|
#define PER_MASK 0xff
|
|
|
|
int personality(unsigned long);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|