Import BSDDB 4.7.25 (as of svn r89086)

This commit is contained in:
Zachary Ware
2017-09-04 13:40:25 -05:00
parent 4b29e0458f
commit 8f590873d0
4781 changed files with 2241032 additions and 6 deletions

35
dbinc_auto/repmgr_auto.h Normal file
View File

@@ -0,0 +1,35 @@
/* Do not edit: automatically built by gen_msg.awk. */
#ifndef __repmgr_AUTO_H
#define __repmgr_AUTO_H
/*
* Message sizes are simply the sum of field sizes (not
* counting variable size parts, when DBTs are present),
* and may be different from struct sizes due to padding.
*/
#define __REPMGR_HANDSHAKE_SIZE 6
typedef struct ___repmgr_handshake_args {
u_int16_t port;
u_int32_t priority;
} __repmgr_handshake_args;
#define __REPMGR_ACK_SIZE 12
typedef struct ___repmgr_ack_args {
u_int32_t generation;
DB_LSN lsn;
} __repmgr_ack_args;
#define __REPMGR_VERSION_PROPOSAL_SIZE 8
typedef struct ___repmgr_version_proposal_args {
u_int32_t min;
u_int32_t max;
} __repmgr_version_proposal_args;
#define __REPMGR_VERSION_CONFIRMATION_SIZE 4
typedef struct ___repmgr_version_confirmation_args {
u_int32_t version;
} __repmgr_version_confirmation_args;
#define __REPMGR_MAXMSG_SIZE 12
#endif