Skip to content

Commit

Permalink
QueryConfig: Move query type to just before the params
Browse files Browse the repository at this point in the history
This is intended to simplify encoding/decoding of this struct.
  • Loading branch information
cjpatton committed Nov 22, 2023
1 parent e2f7824 commit 8cddecc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion draft-wang-ppm-dap-taskprov.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,10 @@ selection. It is defined as follows:

~~~
struct {
QueryType query_type; /* I-D.draft-ietf-ppm-dap-07 */
Duration time_precision; /* I-D.draft-ietf-ppm-dap-07 */
uint16 max_batch_query_count; /* I-D.draft-ietf-ppm-dap-07 */
uint32 min_batch_size;
QueryType query_type; /* I-D.draft-ietf-ppm-dap-07 */
uint16 query_type_param_len; /* length of the remainder */
select (QueryConfig.query_type) {
case time_interval: Empty;
Expand Down

0 comments on commit 8cddecc

Please sign in to comment.