type rsp =
| OK
| Error
| Not_supported
type t = {
op : Req.op option;
st : rsp option;
}
val write_response : (int64 * t) -> Cstruct.t -> unit
val read_response : Cstruct.t -> int64 * t