mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-22 22:56:29 +00:00
17 lines
249 B
C
17 lines
249 B
C
/*
|
|
* voting.h
|
|
* Copyright (c) 2ndQuadrant, 2010-2017
|
|
*/
|
|
#ifndef _VOTING_H_
|
|
#define _VOTING_H_
|
|
|
|
typedef enum {
|
|
VS_UNKNOWN = -1,
|
|
VS_NO_VOTE,
|
|
VS_VOTE_REQUEST_RECEIVED,
|
|
VS_VOTE_INITIATED,
|
|
VS_VOTE_WON
|
|
} NodeVotingStatus;
|
|
|
|
#endif /* _VOTING_H_ */
|