Cleaned a bit

This commit is contained in:
VilhoRaatikka
2014-12-03 10:35:34 +02:00
parent e696651ad6
commit 7079cb4749
2 changed files with 16 additions and 137 deletions

View File

@ -75,11 +75,8 @@ struct router_instance;
typedef enum {
TARGET_UNDEFINED = 0x00,
TARGET_MASTER = 0x01,
TARGET_SLAVE = 0x02,
TARGET_NAMED_SERVER = 0x04,
TARGET_ALL = 0x08,
TARGET_RLAG_MAX = 0x10
TARGET_SINGLE = 0x01,
TARGET_ALL = 0x02
} route_target_t;
#define TARGET_IS_MASTER(t) (t & TARGET_MASTER)