Packet handling the (FlowSpec) "traffic-rate" extended community. References: RFC 5575
| 1620 | # |
| 1621 | |
| 1622 | class BGPPAExtCommTrafficRate(Packet): |
| 1623 | """ |
| 1624 | Packet handling the (FlowSpec) "traffic-rate" extended community. |
| 1625 | References: RFC 5575 |
| 1626 | """ |
| 1627 | |
| 1628 | name = "FlowSpec traffic-rate extended community" |
| 1629 | fields_desc = [ |
| 1630 | ShortField("id", 0), |
| 1631 | IEEEFloatField("rate", 0) |
| 1632 | ] |
| 1633 | |
| 1634 | |
| 1635 | class BGPPAExtCommTrafficAction(Packet): |
no test coverage detected
searching dependent graphs…