| 835 | |
| 836 | |
| 837 | class ISIS_IsReachabilityEntry(Packet): |
| 838 | name = "ISIS IS Reachability" |
| 839 | fields_desc = [ByteField("defmetric", 1), |
| 840 | ByteField("delmetric", 0x80), |
| 841 | ByteField("expmetric", 0x80), |
| 842 | ByteField("errmetric", 0x80), |
| 843 | ISIS_NodeIdField("neighbourid", "0102.0304.0506.07")] |
| 844 | |
| 845 | def extract_padding(self, s): |
| 846 | return "", s |
| 847 | |
| 848 | |
| 849 | class ISIS_IsReachabilityTlv(ISIS_GenericTlv): |
nothing calls this directly
no test coverage detected
searching dependent graphs…