Packet handling the IPv4 Address Specific Extended Community attribute value. References: RFC 4360
| 1594 | |
| 1595 | |
| 1596 | class BGPPAExtCommIPv4AddressSpecific(Packet): |
| 1597 | """ |
| 1598 | Packet handling the IPv4 Address Specific Extended Community attribute |
| 1599 | value. |
| 1600 | References: RFC 4360 |
| 1601 | """ |
| 1602 | |
| 1603 | name = "IPv4 Address Specific Extended Community" |
| 1604 | fields_desc = [ |
| 1605 | IntField("global_administrator", 0), ShortField("local_administrator", 0)] # noqa: E501 |
| 1606 | |
| 1607 | |
| 1608 | class BGPPAExtCommOpaque(Packet): |
no test coverage detected
searching dependent graphs…