diff options
author | Karen Schoener <karen@volta.io> | 2020-05-28 22:36:35 +0200 |
---|---|---|
committer | Karen Schoener <karen@volta.io> | 2020-06-01 19:21:37 +0200 |
commit | fd563cc7f35e598decdbfd6a58bae2f050143b3f (patch) | |
tree | 682f7ce1aaa6b133803c0c61e31e2c6f55d387f9 /ldpd/ldp.h | |
parent | Merge pull request #6476 from wesleycoakley/zebra-debuglogfix (diff) | |
download | frr-fd563cc7f35e598decdbfd6a58bae2f050143b3f.tar.xz frr-fd563cc7f35e598decdbfd6a58bae2f050143b3f.zip |
ldpd: Relay data plane pseudowire status in LDP notification
Provide a way for the data plane to indicate pseudowire
status (such as: not forwarding, AC failure).
On a data plane pseudowire install failure, data plane
sets the pseudowire status.
Zebra relays the pseudowire status to LDP.
LDP includes the pseudowire status in the LDP notification
to the LDP peer.
Signed-off-by: Karen Schoener <karen@voltanet.io>
Diffstat (limited to 'ldpd/ldp.h')
-rw-r--r-- | ldpd/ldp.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/ldpd/ldp.h b/ldpd/ldp.h index cac3da7c5..5d1bf81ec 100644 --- a/ldpd/ldp.h +++ b/ldpd/ldp.h @@ -326,13 +326,6 @@ struct pw_status_tlv { #define PW_STATUS_TLV_SIZE 8 #define PW_STATUS_TLV_LEN 4 -#define PW_FORWARDING 0 -#define PW_NOT_FORWARDING (1 << 0) -#define PW_LOCAL_RX_FAULT (1 << 1) -#define PW_LOCAL_TX_FAULT (1 << 2) -#define PW_PSN_RX_FAULT (1 << 3) -#define PW_PSN_TX_FAULT (1 << 4) - #define NO_LABEL UINT32_MAX #endif /* !_LDP_H_ */ |