Control Option: Prefix Information Option (PIO)
| 140 | |
| 141 | |
| 142 | class RPLOptPIO(_RPLGuessOption): |
| 143 | """ |
| 144 | Control Option: Prefix Information Option (PIO) |
| 145 | """ |
| 146 | name = "Prefix Information" |
| 147 | fields_desc = [ByteEnumField("otype", 8, RPLOPTSSTR), |
| 148 | ByteField("len", 30), |
| 149 | ByteField("plen", 64), |
| 150 | BitField("L", 0, 1), |
| 151 | BitField("A", 0, 1), |
| 152 | BitField("R", 0, 1), |
| 153 | BitField("reserved1", 0, 5), |
| 154 | IntField("validlifetime", 0xffffffff), |
| 155 | IntField("preflifetime", 0xffffffff), |
| 156 | IntField("reserved2", 0), |
| 157 | IP6Field("prefix", "::1")] |
| 158 | |
| 159 | |
| 160 | class RPLOptTgtDesc(_RPLGuessOption): |
nothing calls this directly
no test coverage detected