Packet handling the Two-Octet AS Specific Extended Community attribute value. References: RFC 4360
| 1570 | # |
| 1571 | |
| 1572 | class BGPPAExtCommTwoOctetASSpecific(Packet): |
| 1573 | """ |
| 1574 | Packet handling the Two-Octet AS Specific Extended Community attribute |
| 1575 | value. |
| 1576 | References: RFC 4360 |
| 1577 | """ |
| 1578 | |
| 1579 | name = "Two-Octet AS Specific Extended Community" |
| 1580 | fields_desc = [ |
| 1581 | ShortField("global_administrator", 0), IntField("local_administrator", 0)] # noqa: E501 |
| 1582 | |
| 1583 | |
| 1584 | class BGPPAExtCommFourOctetASSpecific(Packet): |
no test coverage detected
searching dependent graphs…