Packet handling the COMMUNITIES attribute value. References: RFC 1997
| 1351 | |
| 1352 | |
| 1353 | class BGPPACommunity(Packet): |
| 1354 | """ |
| 1355 | Packet handling the COMMUNITIES attribute value. |
| 1356 | References: RFC 1997 |
| 1357 | """ |
| 1358 | |
| 1359 | name = "COMMUNITIES" |
| 1360 | fields_desc = [IntEnumField("community", 0, well_known_communities)] |
| 1361 | |
| 1362 | |
| 1363 | # |
nothing calls this directly
no test coverage detected
searching dependent graphs…