Packet handling the (FlowSpec) "traffic-marking" extended community. References: RFC 5575
| 1689 | |
| 1690 | |
| 1691 | class BGPPAExtCommTrafficMarking(Packet): |
| 1692 | """ |
| 1693 | Packet handling the (FlowSpec) "traffic-marking" extended community. |
| 1694 | References: RFC 5575 |
| 1695 | """ |
| 1696 | |
| 1697 | name = "FlowSpec traffic-marking extended community" |
| 1698 | fields_desc = [ |
| 1699 | BitEnumField("dscp", 48, 48, _ext_comm_traffic_action_fields) |
| 1700 | ] |
| 1701 | |
| 1702 | |
| 1703 | _ext_high_low_dict = { |
no test coverage detected
searching dependent graphs…