interim commit

This commit is contained in:
Ian Barwick
2017-06-28 16:38:41 +09:00
parent 35b6178e07
commit ded8d95e5a
7 changed files with 522 additions and 62 deletions

16
voting.h Normal file
View File

@@ -0,0 +1,16 @@
/*
* 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_ */