| 236 | |
| 237 | |
| 238 | class CommandComplete(_ZeroPadding): |
| 239 | name = "Command Completion Response" |
| 240 | fields_desc = [ |
| 241 | ByteTagField(b"C"), |
| 242 | FieldLenField( |
| 243 | "len", None, length_of="cmdtag", fmt="I", adjust=lambda pkt, x: x + 4 |
| 244 | ), |
| 245 | StrLenField("cmdtag", "", length_from=lambda pkt: pkt.len - 4), |
| 246 | ] |
| 247 | |
| 248 | |
| 249 | class BackendKeyData(_ZeroPadding): |
nothing calls this directly
no test coverage detected
searching dependent graphs…