| 191 | |
| 192 | |
| 193 | class Authentication(_ZeroPadding): |
| 194 | name = "Authentication Request" |
| 195 | fields_desc = [ |
| 196 | ByteTagField(b"R"), |
| 197 | FieldLenField( |
| 198 | "len", None, length_of="optional", fmt="I", adjust=lambda pkt, x: x + 8 |
| 199 | ), |
| 200 | IntEnumField("method", default=0, enum=AUTH_CODES), |
| 201 | StrLenField("optional", None, length_from=lambda pkt: pkt.len - 8), |
| 202 | ] |
| 203 | |
| 204 | |
| 205 | class ParameterStatus(_ZeroPadding): |
nothing calls this directly
no test coverage detected
searching dependent graphs…