Files
repmgr/voting.h
Ian Barwick fc4f276844 Improve handling
not sure if we need to store the electoral term...
2017-06-30 13:40:19 +09:00

16 lines
235 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
} NodeVotingStatus;
#endif /* _VOTING_H_ */