| 225 | |
| 226 | |
| 227 | class Query(_ZeroPadding): |
| 228 | name = "Simple Query" |
| 229 | fields_desc = [ |
| 230 | ByteTagField(b"Q"), |
| 231 | FieldLenField( |
| 232 | "len", None, length_of="query", fmt="I", adjust=lambda pkt, x: x + 5 |
| 233 | ), |
| 234 | StrNullField("query", None), |
| 235 | ] |
| 236 | |
| 237 | |
| 238 | class CommandComplete(_ZeroPadding): |
nothing calls this directly
no test coverage detected
searching dependent graphs…