Control Option: Solicited Information
| 124 | |
| 125 | |
| 126 | class RPLOptSolInfo(_RPLGuessOption): |
| 127 | """ |
| 128 | Control Option: Solicited Information |
| 129 | """ |
| 130 | name = "Solicited Information" |
| 131 | fields_desc = [ByteEnumField("otype", 7, RPLOPTSSTR), |
| 132 | ByteField("len", 19), |
| 133 | ByteField("RPLInstanceID", 0), |
| 134 | BitField("V", 0, 1), |
| 135 | BitField("I", 0, 1), |
| 136 | BitField("D", 0, 1), |
| 137 | BitField("flags", 0, 5), |
| 138 | IP6Field("dodagid", "::1"), |
| 139 | ByteField("ver", 0)] |
| 140 | |
| 141 | |
| 142 | class RPLOptPIO(_RPLGuessOption): |
nothing calls this directly
no test coverage detected