Packet handling the Four-Octet AS Specific Extended Community attribute value. References: RFC 5668
| 1582 | |
| 1583 | |
| 1584 | class BGPPAExtCommFourOctetASSpecific(Packet): |
| 1585 | """ |
| 1586 | Packet handling the Four-Octet AS Specific Extended Community |
| 1587 | attribute value. |
| 1588 | References: RFC 5668 |
| 1589 | """ |
| 1590 | |
| 1591 | name = "Four-Octet AS Specific Extended Community" |
| 1592 | fields_desc = [ |
| 1593 | IntField("global_administrator", 0), ShortField("local_administrator", 0)] # noqa: E501 |
| 1594 | |
| 1595 | |
| 1596 | class BGPPAExtCommIPv4AddressSpecific(Packet): |
no test coverage detected
searching dependent graphs…