Packet handling the (FlowSpec) "redirect IPv4" extended community. (RFC 7674). References: RFC 7674
| 1661 | |
| 1662 | |
| 1663 | class BGPPAExtCommRedirectIPv4(Packet): |
| 1664 | """ |
| 1665 | Packet handling the (FlowSpec) "redirect IPv4" extended community. |
| 1666 | (RFC 7674). |
| 1667 | References: RFC 7674 |
| 1668 | """ |
| 1669 | |
| 1670 | name = "FlowSpec redirect IPv4 extended community" |
| 1671 | fields_desc = [ |
| 1672 | IntField("ip_addr", 0), |
| 1673 | ShortField("value", 0) |
| 1674 | ] |
| 1675 | |
| 1676 | |
| 1677 | class BGPPAExtCommRedirectAS4Byte(Packet): |
no test coverage detected
searching dependent graphs…