Packet handling the Opaque Extended Community attribute value. References: RFC 4360
| 1606 | |
| 1607 | |
| 1608 | class BGPPAExtCommOpaque(Packet): |
| 1609 | """ |
| 1610 | Packet handling the Opaque Extended Community attribute value. |
| 1611 | References: RFC 4360 |
| 1612 | """ |
| 1613 | |
| 1614 | name = "Opaque Extended Community" |
| 1615 | fields_desc = [StrFixedLenField("value", "", length=6)] |
| 1616 | |
| 1617 | |
| 1618 | # |
no test coverage detected
searching dependent graphs…