diff options
author | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2017-09-05 10:13:33 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2017-09-17 13:36:14 +0900 |
commit | 8e851711a7156f9d9565c1500551e0f619900e96 (patch) | |
tree | f28c2e4e57a58bdd9b086369d182956f33a06d4c | |
parent | 18fa85335276f17bfc542636f42907e287fd1d84 (diff) |
packet/zebra: Constants for Link Parameters Status
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | ryu/lib/packet/zebra.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ryu/lib/packet/zebra.py b/ryu/lib/packet/zebra.py index c3a26a34..52d06059 100644 --- a/ryu/lib/packet/zebra.py +++ b/ryu/lib/packet/zebra.py @@ -198,6 +198,23 @@ ZEBRA_LLT_IEEE80211_RADIOTAP = 47 ZEBRA_LLT_IEEE802154 = 48 ZEBRA_LLT_IEEE802154_PHY = 49 +# Link Parameters Status +LP_UNSET = 0x0000 +LP_TE = 0x0001 +LP_MAX_BW = 0x0002 +LP_MAX_RSV_BW = 0x0004 +LP_UNRSV_BW = 0x0008 +LP_ADM_GRP = 0x0010 +LP_RMT_AS = 0x0020 +LP_DELAY = 0x0040 +LP_MM_DELAY = 0x0080 +LP_DELAY_VAR = 0x0100 +LP_PKT_LOSS = 0x0200 +LP_RES_BW = 0x0400 +LP_AVA_BW = 0x0800 +LP_USE_BW = 0x1000 +LP_TE_METRIC = 0x2000 + # "non-official" architectural constants MAX_CLASS_TYPE = 8 |