Files
repmgr/voting.h
2017-06-28 16:38:41 +09:00

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_ */