Packet handling the (FlowSpec) "traffic-action" extended community. References: RFC 5575
| 1633 | |
| 1634 | |
| 1635 | class BGPPAExtCommTrafficAction(Packet): |
| 1636 | """ |
| 1637 | Packet handling the (FlowSpec) "traffic-action" extended community. |
| 1638 | References: RFC 5575 |
| 1639 | """ |
| 1640 | |
| 1641 | name = "FlowSpec traffic-action extended community" |
| 1642 | fields_desc = [ |
| 1643 | BitField("reserved", 0, 46), |
| 1644 | BitField("sample", 0, 1), |
| 1645 | BitField("terminal_action", 0, 1) |
| 1646 | ] |
| 1647 | |
| 1648 | |
| 1649 | class BGPPAExtCommRedirectAS2Byte(Packet): |